diff options
author | nsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-27 14:21:12 +0000 |
---|---|---|
committer | nsylvain@google.com <nsylvain@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-27 14:21:12 +0000 |
commit | 75592407d82e2e9ce5cdf118b0f7e523461213c9 (patch) | |
tree | af989f7d5488e670578b5f7ead4f20ed4f05496b /chrome/app/breakpad.h | |
parent | db71728e5bc139ecfa97823e5613d882257cef4c (diff) | |
download | chromium_src-75592407d82e2e9ce5cdf118b0f7e523461213c9.zip chromium_src-75592407d82e2e9ce5cdf118b0f7e523461213c9.tar.gz chromium_src-75592407d82e2e9ce5cdf118b0f7e523461213c9.tar.bz2 |
Fix header guard.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1439 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad.h')
-rw-r--r-- | chrome/app/breakpad.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/app/breakpad.h b/chrome/app/breakpad.h index d94b7d5..af8fe46 100644 --- a/chrome/app/breakpad.h +++ b/chrome/app/breakpad.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CHROME_APP_BREAKPAD_H__ -#define CHROME_APP_BREAKPAD_H__ +#ifndef CHROME_APP_BREAKPAD_H_ +#define CHROME_APP_BREAKPAD_H_ #include <windows.h> #include <string> @@ -23,5 +23,5 @@ unsigned __stdcall InitCrashReporterThread(void* param); // a dialog asking for permission to continue execution or to exit now. bool ShowRestartDialogIfCrashed(bool* exit_now); -#endif // CHROME_APP_BREAKPAD_H__ +#endif // CHROME_APP_BREAKPAD_H_ |