diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-15 19:02:29 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-15 19:02:29 +0000 |
commit | ceb2be854b435c526750f5dc5786c6cd3505fadd (patch) | |
tree | 4d0fcceea4cb39b35b987acd96298791bae304ff /gfx/rect.h | |
parent | a5ec2b8db912e2f4b5c443d654672814c814a883 (diff) | |
download | chromium_src-ceb2be854b435c526750f5dc5786c6cd3505fadd.zip chromium_src-ceb2be854b435c526750f5dc5786c6cd3505fadd.tar.gz chromium_src-ceb2be854b435c526750f5dc5786c6cd3505fadd.tar.bz2 |
Revert 41614 - 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
TBR=ben@chromium.org
Review URL: http://codereview.chromium.org/1002001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41615 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gfx/rect.h')
-rw-r--r-- | gfx/rect.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 GFX_RECT_H_ -#define GFX_RECT_H_ +#ifndef BASE_GFX_RECT_H__ +#define BASE_GFX_RECT_H__ #include <iosfwd> @@ -162,4 +162,4 @@ class Rect { std::ostream& operator<<(std::ostream& out, const gfx::Rect& r); -#endif // GFX_RECT_H_ +#endif // BASE_GFX_RECT_H__ |