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/rect.h | |
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/rect.h')
-rw-r--r-- | gfx/rect.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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_ |