Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: ui/gfx/rect.h

Issue 6246027: Move src/gfx/ to src/ui/gfx... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gfx/point.cc ('k') | ui/gfx/rect.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Defines a simple integer rectangle class. The containment semantics 5 // Defines a simple integer rectangle class. The containment semantics
6 // are array-like; that is, the coordinate (x, y) is considered to be 6 // are array-like; that is, the coordinate (x, y) is considered to be
7 // contained by the rectangle, but the coordinate (x + width, y) is not. 7 // contained by the rectangle, but the coordinate (x + width, y) is not.
8 // The class will happily let you create malformed rectangles (that is, 8 // The class will happily let you create malformed rectangles (that is,
9 // rectangles with negative width and/or height), but there will be assertions 9 // rectangles with negative width and/or height), but there will be assertions
10 // in the operations (such as Contains()) to complain in this case. 10 // in the operations (such as Contains()) to complain in this case.
11 11
12 #ifndef GFX_RECT_H_ 12 #ifndef UI_GFX_RECT_H_
13 #define GFX_RECT_H_ 13 #define UI_GFX_RECT_H_
14 #pragma once 14 #pragma once
15 15
16 #include <iosfwd> 16 #include <iosfwd>
17 17
18 #include "gfx/point.h" 18 #include "gfx/point.h"
19 #include "gfx/size.h" 19 #include "gfx/size.h"
20 20
21 #if defined(OS_WIN) 21 #if defined(OS_WIN)
22 typedef struct tagRECT RECT; 22 typedef struct tagRECT RECT;
23 #elif defined(USE_X11) 23 #elif defined(USE_X11)
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 private: 175 private:
176 gfx::Point origin_; 176 gfx::Point origin_;
177 gfx::Size size_; 177 gfx::Size size_;
178 }; 178 };
179 179
180 std::ostream& operator<<(std::ostream& out, const gfx::Rect& r); 180 std::ostream& operator<<(std::ostream& out, const gfx::Rect& r);
181 181
182 } // namespace gfx 182 } // namespace gfx
183 183
184 #endif // GFX_RECT_H_ 184 #endif // UI_GFX_RECT_H_
OLDNEW
« no previous file with comments | « ui/gfx/point.cc ('k') | ui/gfx/rect.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698