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 | |
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')
-rw-r--r-- | gfx/point.h | 6 | ||||
-rw-r--r-- | gfx/rect.h | 6 | ||||
-rw-r--r-- | gfx/size.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/gfx/point.h b/gfx/point.h index 513d555..2914464 100644 --- a/gfx/point.h +++ b/gfx/point.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 BASE_GFX_POINT_H__ -#define BASE_GFX_POINT_H__ +#ifndef GFX_POINT_H_ +#define GFX_POINT_H_ #include "build/build_config.h" @@ -77,4 +77,4 @@ class Point { std::ostream& operator<<(std::ostream& out, const gfx::Point& p); -#endif // BASE_GFX_POINT_H__ +#endif // GFX_POINT_H_ @@ -9,8 +9,8 @@ // rectangles with negative width and/or height), but there will be assertions // in the operations (such as contain()) to complain in this case. -#ifndef BASE_GFX_RECT_H__ -#define BASE_GFX_RECT_H__ +#ifndef GFX_RECT_H_ +#define GFX_RECT_H_ #include <iosfwd> @@ -162,4 +162,4 @@ class Rect { std::ostream& operator<<(std::ostream& out, const gfx::Rect& r); -#endif // BASE_GFX_RECT_H__ +#endif // GFX_RECT_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 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_ |