Index: third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp |
diff --git a/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp |
index 47d19883aa5b8d5894c0d22336f0b4def495a4a3..8d5b1660caeffa1b2388a8925b8012b18c972d94 100644 |
--- a/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp |
+++ b/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp |
@@ -12,7 +12,6 @@ |
#include "core/css/resolver/StyleResolverState.h" |
#include "core/style/ShadowData.h" |
#include "platform/graphics/filters/FilterOperations.h" |
-#include <memory> |
namespace blink { |
@@ -196,7 +195,7 @@ InterpolationValue FilterInterpolationFunctions::maybeConvertFilter(const Filter |
return result; |
} |
-std::unique_ptr<InterpolableValue> FilterInterpolationFunctions::createNoneValue(const NonInterpolableValue& untypedNonInterpolableValue) |
+PassOwnPtr<InterpolableValue> FilterInterpolationFunctions::createNoneValue(const NonInterpolableValue& untypedNonInterpolableValue) |
{ |
switch (toFilterNonInterpolableValue(untypedNonInterpolableValue).type()) { |
case FilterOperation::GRAYSCALE: |