Index: third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
index b6792a261ae995de70cdc7e0572cb1f10d3627ff..6ed147b9fe127faaa2192b9ad0ba4092274347ba 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
@@ -88,7 +88,7 @@ class UnderlyingSliceTypesChecker |
public: |
static std::unique_ptr<UnderlyingSliceTypesChecker> create( |
const SliceTypes& underlyingTypes) { |
- return wrapUnique(new UnderlyingSliceTypesChecker(underlyingTypes)); |
+ return WTF::wrapUnique(new UnderlyingSliceTypesChecker(underlyingTypes)); |
} |
static SliceTypes getUnderlyingSliceTypes( |
@@ -114,7 +114,8 @@ class InheritedSliceTypesChecker : public InterpolationType::ConversionChecker { |
static std::unique_ptr<InheritedSliceTypesChecker> create( |
CSSPropertyID property, |
const SliceTypes& inheritedTypes) { |
- return wrapUnique(new InheritedSliceTypesChecker(property, inheritedTypes)); |
+ return WTF::wrapUnique( |
+ new InheritedSliceTypesChecker(property, inheritedTypes)); |
} |
private: |