| Index: third_party/WebKit/Source/core/animation/PaintInterpolationType.h
|
| diff --git a/third_party/WebKit/Source/core/animation/PaintInterpolationType.h b/third_party/WebKit/Source/core/animation/PaintInterpolationType.h
|
| index 29f3de044970ce5e49a764f609a1934be3181db0..6fcee4f501ae58b054bbba2138afe54680547074 100644
|
| --- a/third_party/WebKit/Source/core/animation/PaintInterpolationType.h
|
| +++ b/third_party/WebKit/Source/core/animation/PaintInterpolationType.h
|
| @@ -5,18 +5,18 @@
|
| #ifndef PaintInterpolationType_h
|
| #define PaintInterpolationType_h
|
|
|
| -#include "core/animation/InterpolationType.h"
|
| +#include "core/animation/CSSInterpolationType.h"
|
|
|
| namespace blink {
|
|
|
| -class PaintInterpolationType : public InterpolationType {
|
| +class PaintInterpolationType : public CSSInterpolationType {
|
| public:
|
| PaintInterpolationType(CSSPropertyID property)
|
| - : InterpolationType(property)
|
| + : CSSInterpolationType(property)
|
| { }
|
|
|
| - PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const StyleResolverState&) const final;
|
| - void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const final;
|
| + PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const InterpolationEnvironment&) const final;
|
| + void apply(const InterpolableValue&, const NonInterpolableValue*, InterpolationEnvironment&) const final;
|
|
|
| private:
|
| PassOwnPtr<InterpolationValue> maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const final;
|
|
|