| Index: third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| index 79cee23b5771e0aeb8fc7428657263f16069869b..f8ac49d97441077f23d4063975b85f3c514a30f2 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSBasicShapeInterpolationType.cpp
|
| @@ -22,7 +22,7 @@ class UnderlyingCompatibilityChecker
|
| public:
|
| static std::unique_ptr<UnderlyingCompatibilityChecker> create(
|
| PassRefPtr<NonInterpolableValue> underlyingNonInterpolableValue) {
|
| - return wrapUnique(new UnderlyingCompatibilityChecker(
|
| + return WTF::wrapUnique(new UnderlyingCompatibilityChecker(
|
| std::move(underlyingNonInterpolableValue)));
|
| }
|
|
|
| @@ -45,7 +45,7 @@ class InheritedShapeChecker : public InterpolationType::ConversionChecker {
|
| static std::unique_ptr<InheritedShapeChecker> create(
|
| CSSPropertyID property,
|
| PassRefPtr<BasicShape> inheritedShape) {
|
| - return wrapUnique(
|
| + return WTF::wrapUnique(
|
| new InheritedShapeChecker(property, std::move(inheritedShape)));
|
| }
|
|
|
|
|