| Index: third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| index 3a12547554200c4fdbd484ad49a53205607976fd..664ead256051a6ea1fdec0e8738a5fcb4b2a823a 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
|
| @@ -61,7 +61,7 @@ class InheritedAutosChecker : public InterpolationType::ConversionChecker {
|
| public:
|
| static std::unique_ptr<InheritedAutosChecker> create(
|
| const ClipAutos& inheritedAutos) {
|
| - return wrapUnique(new InheritedAutosChecker(inheritedAutos));
|
| + return WTF::wrapUnique(new InheritedAutosChecker(inheritedAutos));
|
| }
|
|
|
| private:
|
| @@ -107,7 +107,7 @@ class UnderlyingAutosChecker : public InterpolationType::ConversionChecker {
|
|
|
| static std::unique_ptr<UnderlyingAutosChecker> create(
|
| const ClipAutos& underlyingAutos) {
|
| - return wrapUnique(new UnderlyingAutosChecker(underlyingAutos));
|
| + return WTF::wrapUnique(new UnderlyingAutosChecker(underlyingAutos));
|
| }
|
|
|
| static ClipAutos getUnderlyingAutos(const InterpolationValue& underlying) {
|
|
|