diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 12:47:14 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 12:47:14 +0000 |
commit | 71a76d032e2f837630981952e497dfb7c9533136 (patch) | |
tree | d0b9f08631a002ea9beed0f0345dd416c614b70d /base/pe_image.h | |
parent | f85d541dfff6b40ede739d3c0c3094ba420bafa2 (diff) | |
download | chromium_src-71a76d032e2f837630981952e497dfb7c9533136.zip chromium_src-71a76d032e2f837630981952e497dfb7c9533136.tar.gz chromium_src-71a76d032e2f837630981952e497dfb7c9533136.tar.bz2 |
Fix incorrect guards in base/.
This doesn't change _H_ vs _H__, it just fixes guards that didn't properly match the filename. Adds a guard to clipboard_util.h which was previously guardless.
Review URL: http://codereview.chromium.org/42278
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/pe_image.h')
-rw-r--r-- | base/pe_image.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/pe_image.h b/base/pe_image.h index d03aec75..f2a929d 100644 --- a/base/pe_image.h +++ b/base/pe_image.h @@ -8,8 +8,8 @@ // Win32 Portable Executable File Format" by Matt Pietrek: // http://msdn.microsoft.com/msdnmag/issues/02/02/PE/default.aspx -#ifndef BASE_SRC_PE_IMAGE_H__ -#define BASE_SRC_PE_IMAGE_H__ +#ifndef BASE_PE_IMAGE_H_ +#define BASE_PE_IMAGE_H_ #include <windows.h> #include <DelayIMP.h> @@ -254,4 +254,4 @@ inline PIMAGE_EXPORT_DIRECTORY PEImage::GetExportDirectory() const { GetImageDirectoryEntryAddr(IMAGE_DIRECTORY_ENTRY_EXPORT)); } -#endif // BASE_SRC_PE_IMAGE_H__ +#endif // BASE_PE_IMAGE_H_ |