diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-15 18:54:04 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-15 18:54:04 +0000 |
commit | a5ec2b8db912e2f4b5c443d654672814c814a883 (patch) | |
tree | d668378ddc0e822c73ee8ded6e1ad5fbb58848fb /gfx/size.h | |
parent | 19aafc594225e3d0d4ff6625b07a1693af26d198 (diff) | |
download | chromium_src-a5ec2b8db912e2f4b5c443d654672814c814a883.zip chromium_src-a5ec2b8db912e2f4b5c443d654672814c814a883.tar.gz chromium_src-a5ec2b8db912e2f4b5c443d654672814c814a883.tar.bz2 |
Fix header include guards - remove BASE_ prefix that is no longer accurate.
TBR=darin
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/972003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41614 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gfx/size.h')
-rw-r--r-- | gfx/size.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 BASE_GFX_SIZE_H_ -#define BASE_GFX_SIZE_H_ +#ifndef GFX_SIZE_H_ +#define GFX_SIZE_H_ #include "build/build_config.h" @@ -80,4 +80,4 @@ class Size { std::ostream& operator<<(std::ostream& out, const gfx::Size& s); -#endif // BASE_GFX_SIZE_H_ +#endif // GFX_SIZE_H_ |