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

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

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.h
diff --git a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
index f189a61f7bcac0755b36516bf50210476ffda955..f3ccbbfdc548551a91ad5b0e39ad4589e858b54c 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
+++ b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
@@ -104,7 +104,7 @@ public:
FloatRoundedRect(const FloatRect&, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight);
const FloatRect& rect() const { return m_rect; }
- const Radii& radii() const { return m_radii; }
+ const Radii& getRadii() const { return m_radii; }
bool isRounded() const { return !m_radii.isZero(); }
bool isEmpty() const { return m_rect.isEmpty(); }
@@ -204,7 +204,7 @@ inline bool operator!=(const FloatRoundedRect::Radii& a, const FloatRoundedRect:
inline bool operator==(const FloatRoundedRect& a, const FloatRoundedRect& b)
{
- return a.rect() == b.rect() && a.radii() == b.radii();
+ return a.rect() == b.rect() && a.getRadii() == b.getRadii();
}
// Redeclared here to avoid ODR issues.

Powered by Google App Engine
This is Rietveld 408576698