Index: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h |
diff --git a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h |
index 75ff547d9ccdaf7cd6a8f577271a4daee6c6c8ad..50a08ddbfd0e504da79804f03f0fe41774f6186f 100644 |
--- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h |
+++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h |
@@ -48,7 +48,7 @@ class PairwisePrimitiveInterpolation : public PrimitiveInterpolation { |
std::unique_ptr<InterpolableValue> start, |
std::unique_ptr<InterpolableValue> end, |
PassRefPtr<NonInterpolableValue> nonInterpolableValue) { |
- return wrapUnique(new PairwisePrimitiveInterpolation( |
+ return WTF::wrapUnique(new PairwisePrimitiveInterpolation( |
type, std::move(start), std::move(end), |
std::move(nonInterpolableValue))); |
} |
@@ -105,7 +105,7 @@ class FlipPrimitiveInterpolation : public PrimitiveInterpolation { |
static std::unique_ptr<FlipPrimitiveInterpolation> create( |
std::unique_ptr<TypedInterpolationValue> start, |
std::unique_ptr<TypedInterpolationValue> end) { |
- return wrapUnique( |
+ return WTF::wrapUnique( |
new FlipPrimitiveInterpolation(std::move(start), std::move(end))); |
} |