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 | |
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
-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 2914464..513d555 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 GFX_POINT_H_ -#define GFX_POINT_H_ +#ifndef BASE_GFX_POINT_H__ +#define BASE_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 // GFX_POINT_H_ +#endif // BASE_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 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__ @@ -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 GFX_SIZE_H_ -#define GFX_SIZE_H_ +#ifndef BASE_GFX_SIZE_H_ +#define BASE_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 // GFX_SIZE_H_ +#endif // BASE_GFX_SIZE_H_ |