aboutsummaryrefslogtreecommitdiff
path: root/src/google/crash_report.h
diff options
context:
space:
mode:
authorbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-05 19:42:57 +0000
committerbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-05 19:42:57 +0000
commit07f8ef56aca4fbab3e1a975ad2a439a23007f065 (patch)
treee18ca2b1a9bdd7a5eae87b100139f5b1474cdb0c /src/google/crash_report.h
parentAdding a CrashReport struct, r=mmentovai. (diff)
downloadbreakpad-07f8ef56aca4fbab3e1a975ad2a439a23007f065.tar.xz
Change header paths and include guards to be relative to the "src" directory. r=mmentovai.
http://groups.google.com/group/airbag-dev/msg/cbe061dd563e9d17 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@10 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google/crash_report.h')
-rw-r--r--src/google/crash_report.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/google/crash_report.h b/src/google/crash_report.h
index dd4bc916..96ba6f14 100644
--- a/src/google/crash_report.h
+++ b/src/google/crash_report.h
@@ -16,13 +16,13 @@
// including data sent with the report and data derived by the minidump
// processor (stack trace, etc.).
-#ifndef _CRASH_REPORT_H__
-#define _CRASH_REPORT_H__
+#ifndef GOOGLE_CRASH_REPORT_H__
+#define GOOGLE_CRASH_REPORT_H__
#include <vector>
#include <string>
-#include "airbag_types.h"
-#include "stack_frame.h"
+#include "google/airbag_types.h"
+#include "google/stack_frame.h"
namespace google_airbag {
@@ -83,4 +83,4 @@ struct CrashReport {
} // namespace google_airbag
-#endif // _CRASH_REPORT_H__
+#endif // GOOGLE_CRASH_REPORT_H__