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

Unified Diff: Source/core/platform/graphics/FloatRect.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 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 | « Source/core/platform/graphics/FloatQuad.cpp ('k') | Source/core/platform/graphics/FloatSize.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/graphics/FloatRect.h
diff --git a/Source/core/platform/graphics/FloatRect.h b/Source/core/platform/graphics/FloatRect.h
index fc17a27f23c199ccf56e2a9dba698d892d0f983e..40bea2b11a7c122f370985b603d80437bf4839b4 100644
--- a/Source/core/platform/graphics/FloatRect.h
+++ b/Source/core/platform/graphics/FloatRect.h
@@ -89,7 +89,7 @@ public:
FloatPoint center() const { return FloatPoint(x() + width() / 2, y() + height() / 2); }
- void move(const FloatSize& delta) { m_location += delta; }
+ void move(const FloatSize& delta) { m_location += delta; }
void moveBy(const FloatPoint& delta) { m_location.move(delta.x(), delta.y()); }
void move(float dx, float dy) { m_location.move(dx, dy); }
« no previous file with comments | « Source/core/platform/graphics/FloatQuad.cpp ('k') | Source/core/platform/graphics/FloatSize.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698