[jumbo] add some missing include guards

Change-Id: I062c853d65c3e89a61920d790d9bc5c993b46fcd
Reviewed-on: https://chromium-review.googlesource.com/884581
Commit-Queue: Scott Graham <scottmg@chromium.org>
Reviewed-by: Scott Graham <scottmg@chromium.org>
This commit is contained in:
Mostyn Bramley-Moore 2018-01-24 23:25:43 +01:00 committed by Commit Bot
parent 9d7a5b10ec
commit 26cd6138af
3 changed files with 11 additions and 0 deletions

View File

@ -8,3 +8,4 @@
Google Inc. Google Inc.
Opera Software ASA Opera Software ASA
Vewd Software AS

View File

@ -12,6 +12,9 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef CRASHPAD_SNAPSHOT_X86_CPUID_READER_H_
#define CRASHPAD_SNAPSHOT_X86_CPUID_READER_H_
#include <stdint.h> #include <stdint.h>
#include <string> #include <string>
@ -61,3 +64,5 @@ class CpuidReader {
} // namespace internal } // namespace internal
} // namespace crashpad } // namespace crashpad
#endif // CRASHPAD_SNAPSHOT_X86_CPUID_READER_H_

View File

@ -12,6 +12,9 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef CRASHPAD_UTIL_WIN_NT_INTERNALS_H_
#define CRASHPAD_UTIL_WIN_NT_INTERNALS_H_
#include <windows.h> #include <windows.h>
#include <winternl.h> #include <winternl.h>
@ -92,3 +95,5 @@ void RtlGetUnloadEventTraceEx(ULONG** element_size,
void** event_trace); void** event_trace);
} // namespace crashpad } // namespace crashpad
#endif // CRASHPAD_UTIL_WIN_NT_INTERNALS_H_