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

Unified Diff: gfx/rect.cc

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 | « gfx/rect.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gfx/rect.cc
===================================================================
--- gfx/rect.cc (revision 52415)
+++ gfx/rect.cc (working copy)
@@ -93,13 +93,6 @@
}
#endif
-void Rect::set_width(int width) {
- size_.set_width(width);
-}
-void Rect::set_height(int height) {
- size_.set_height(height);
-}
-
void Rect::SetRect(int x, int y, int width, int height) {
origin_.SetPoint(x, y);
set_width(width);
« no previous file with comments | « gfx/rect.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698