| 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();
|
| }
|
|
|
|
|