| Index: third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
|
| index 1d759e043e328dafcb8da97f9d7bb251fdda5891..b2df15d02eecdb5dbdce7f303437b47f5ed02385 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
|
| @@ -7,14 +7,16 @@
|
| #include "core/animation/NumberPropertyFunctions.h"
|
| #include "core/css/resolver/StyleBuilder.h"
|
| #include "core/css/resolver/StyleResolverState.h"
|
| +#include "wtf/PtrUtil.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| class ParentNumberChecker : public InterpolationType::ConversionChecker {
|
| public:
|
| - static PassOwnPtr<ParentNumberChecker> create(CSSPropertyID property, double number)
|
| + static std::unique_ptr<ParentNumberChecker> create(CSSPropertyID property, double number)
|
| {
|
| - return adoptPtr(new ParentNumberChecker(property, number));
|
| + return wrapUnique(new ParentNumberChecker(property, number));
|
| }
|
|
|
| private:
|
|
|