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

Unified Diff: third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp

Issue 2392543003: reflow comments in platform/geometry (Closed)
Patch Set: Created 4 years, 2 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
Index: third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp
diff --git a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp
index 254d315936eb399fdfe876dd2156934458f56f1d..a0b86cbbf003467ea704b5b71c0841966e33473c 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp
+++ b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp
@@ -202,7 +202,8 @@ void FloatRoundedRect::inflateWithRadii(int size) {
FloatRect old = m_rect;
m_rect.inflate(size);
- // Considering the inflation factor of shorter size to scale the radii seems appropriate here
+ // Considering the inflation factor of shorter size to scale the radii seems
+ // appropriate here
float factor;
if (m_rect.width() < m_rect.height())
factor = old.width() ? (float)m_rect.width() / old.width() : int(0);

Powered by Google App Engine
This is Rietveld 408576698