Index: third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
index 5102cc47a43405a77bdd862ca7c4140e6310ef73..62dc968ecaf9911e4510acb5bb41ae63b184d7b5 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp |
@@ -41,7 +41,7 @@ class UnderlyingRotationTypeChecker |
public: |
static std::unique_ptr<UnderlyingRotationTypeChecker> create( |
OffsetRotationType underlyingRotationType) { |
- return wrapUnique( |
+ return WTF::wrapUnique( |
new UnderlyingRotationTypeChecker(underlyingRotationType)); |
} |
@@ -65,7 +65,8 @@ class InheritedRotationTypeChecker |
public: |
static std::unique_ptr<InheritedRotationTypeChecker> create( |
OffsetRotationType inheritedRotationType) { |
- return wrapUnique(new InheritedRotationTypeChecker(inheritedRotationType)); |
+ return WTF::wrapUnique( |
+ new InheritedRotationTypeChecker(inheritedRotationType)); |
} |
bool isValid(const InterpolationEnvironment& environment, |