Index: third_party/WebKit/Source/core/style/ClipPathOperation.h |
diff --git a/third_party/WebKit/Source/core/style/ClipPathOperation.h b/third_party/WebKit/Source/core/style/ClipPathOperation.h |
index e08e4d4f0fe46518fb4045b702eb14e198450c3e..07f386f230981e886a445a43fbac63c19257a8b1 100644 |
--- a/third_party/WebKit/Source/core/style/ClipPathOperation.h |
+++ b/third_party/WebKit/Source/core/style/ClipPathOperation.h |
@@ -106,7 +106,7 @@ class ShapeClipPathOperation final : public ClipPathOperation { |
const Path& path(const FloatRect& boundingRect) { |
ASSERT(m_shape); |
m_path.reset(); |
- m_path = wrapUnique(new Path); |
+ m_path = WTF::wrapUnique(new Path); |
m_shape->path(*m_path, boundingRect); |
m_path->setWindRule(m_shape->getWindRule()); |
return *m_path; |