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

Unified Diff: gfx/rect.h

Issue 2987005: Fix some style issues in Rect I noticed. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gfx/rect.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gfx/rect.h
===================================================================
--- gfx/rect.h (revision 52415)
+++ gfx/rect.h (working copy)
@@ -39,7 +39,7 @@
#elif defined(USE_X11)
explicit Rect(const GdkRectangle& r);
#endif
- Rect(const gfx::Size& size);
+ explicit Rect(const gfx::Size& size);
Rect(const gfx::Point& origin, const gfx::Size& size);
~Rect() {}
@@ -59,10 +59,10 @@
void set_y(int y) { origin_.set_y(y); }
int width() const { return size_.width(); }
- void set_width(int width);
+ void set_width(int width) { size_.set_width(width); }
int height() const { return size_.height(); }
- void set_height(int height);
+ void set_height(int height) { size_.set_height(height); }
const gfx::Point& origin() const { return origin_; }
void set_origin(const gfx::Point& origin) { origin_ = origin; }
« no previous file with comments | « no previous file | gfx/rect.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698