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

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

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 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 0b2ce34b32efe99edcddce3d1becf4f1528d7141..245a96b25ccda2c40f706d5053d388d86e739923 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp
+++ b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.cpp
@@ -318,7 +318,7 @@ float calcBorderRadiiConstraintScaleFor(const FloatRect& rect, const FloatRounde
void FloatRoundedRect::constrainRadii()
{
- m_radii.scaleAndFloor(calcBorderRadiiConstraintScaleFor(rect(), radii()));
+ m_radii.scaleAndFloor(calcBorderRadiiConstraintScaleFor(rect(), getRadii()));
}
void FloatRoundedRect::includeLogicalEdges(const Radii& edges, bool isHorizontal, bool includeLogicalLeftEdge, bool includeLogicalRightEdge)

Powered by Google App Engine
This is Rietveld 408576698