Index: third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp |
index 602ccdc9da09d6ed6909d648b79204c495f039be..a8adb8cf0cbf9a703ff934b3e7ff8a1b3ec61827 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp |
@@ -34,10 +34,10 @@ class InheritedPaintChecker : public InterpolationType::ConversionChecker { |
static std::unique_ptr<InheritedPaintChecker> create( |
CSSPropertyID property, |
const StyleColor& color) { |
- return wrapUnique(new InheritedPaintChecker(property, color)); |
+ return WTF::wrapUnique(new InheritedPaintChecker(property, color)); |
} |
static std::unique_ptr<InheritedPaintChecker> create(CSSPropertyID property) { |
- return wrapUnique(new InheritedPaintChecker(property)); |
+ return WTF::wrapUnique(new InheritedPaintChecker(property)); |
} |
private: |