diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-01 18:18:03 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-01 18:18:03 +0000 |
commit | c665eb327f8f3486c454a95782ffdad4e79fde2c (patch) | |
tree | 01d2156127a92605a95e7d63e63f718979aa0151 /gfx | |
parent | 938e1f9ec9e6e1d267dbff0c9bb50d5952937bc7 (diff) | |
download | chromium_src-c665eb327f8f3486c454a95782ffdad4e79fde2c.zip chromium_src-c665eb327f8f3486c454a95782ffdad4e79fde2c.tar.gz chromium_src-c665eb327f8f3486c454a95782ffdad4e79fde2c.tar.bz2 |
Remove base/gfx/.
BUG=none
TEST=trybots
Review URL: http://codereview.chromium.org/1570005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43362 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gfx')
-rw-r--r-- | gfx/point.h | 10 | ||||
-rw-r--r-- | gfx/rect.h | 10 | ||||
-rw-r--r-- | gfx/size.h | 10 |
3 files changed, 13 insertions, 17 deletions
diff --git a/gfx/point.h b/gfx/point.h index 513d555..6e2cfe7 100644 --- a/gfx/point.h +++ b/gfx/point.h @@ -1,9 +1,9 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // 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" @@ -18,9 +18,7 @@ typedef struct tagPOINT POINT; namespace gfx { -// // A point has an x and y coordinate. -// class Point { public: Point(); @@ -77,4 +75,4 @@ class Point { std::ostream& operator<<(std::ostream& out, const gfx::Point& p); -#endif // BASE_GFX_POINT_H__ +#endif // GFX_POINT_H_ @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -7,10 +7,10 @@ // contained by the rectangle, but the coordinate (x + width, y) is not. // The class will happily let you create malformed rectangles (that is, // rectangles with negative width and/or height), but there will be assertions -// in the operations (such as contain()) to complain in this case. +// in the operations (such as Contains()) 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_ @@ -1,9 +1,9 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // 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" @@ -17,9 +17,7 @@ typedef struct tagSIZE SIZE; namespace gfx { -// // A size has width and height values. -// class Size { public: Size() : width_(0), height_(0) {} @@ -80,4 +78,4 @@ class Size { std::ostream& operator<<(std::ostream& out, const gfx::Size& s); -#endif // BASE_GFX_SIZE_H_ +#endif // GFX_SIZE_H_ |