| Index: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| index 8930ad7fd15ec832b0f05418f8cc0c562d22faa0..6cef1a663334b3429696715eed2aceec5fe15e6c 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
|
| @@ -21,7 +21,7 @@ class UnderlyingImageListChecker : public InterpolationType::ConversionChecker {
|
|
|
| static std::unique_ptr<UnderlyingImageListChecker> create(
|
| const InterpolationValue& underlying) {
|
| - return wrapUnique(new UnderlyingImageListChecker(underlying));
|
| + return WTF::wrapUnique(new UnderlyingImageListChecker(underlying));
|
| }
|
|
|
| private:
|
| @@ -73,7 +73,7 @@ class InheritedImageListChecker : public InterpolationType::ConversionChecker {
|
| static std::unique_ptr<InheritedImageListChecker> create(
|
| CSSPropertyID property,
|
| const StyleImageList& inheritedImageList) {
|
| - return wrapUnique(
|
| + return WTF::wrapUnique(
|
| new InheritedImageListChecker(property, inheritedImageList));
|
| }
|
|
|
|
|