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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/core/layout/svg/LayoutSVGShape.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
index 9d9da3a7af209d3b390387f61e6f92ed5b4e7b5c..fbcb6a77b22ad6820443ca4fae82bbc18fb52dc4 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
@@ -72,7 +72,7 @@ LayoutSVGShape::~LayoutSVGShape() {}
void LayoutSVGShape::createPath() {
if (!m_path)
- m_path = makeUnique<Path>();
+ m_path = WTF::makeUnique<Path>();
*m_path = toSVGGeometryElement(element())->asPath();
if (m_rareData.get())
m_rareData->m_cachedNonScalingStrokePath.clear();
@@ -332,7 +332,7 @@ float LayoutSVGShape::strokeWidth() const {
LayoutSVGShapeRareData& LayoutSVGShape::ensureRareData() const {
if (!m_rareData)
- m_rareData = makeUnique<LayoutSVGShapeRareData>();
+ m_rareData = WTF::makeUnique<LayoutSVGShapeRareData>();
return *m_rareData.get();
}

Powered by Google App Engine
This is Rietveld 408576698