Index: third_party/WebKit/Source/core/animation/ShadowListInterpolationType.h |
diff --git a/third_party/WebKit/Source/core/animation/ShadowListInterpolationType.h b/third_party/WebKit/Source/core/animation/ShadowListInterpolationType.h |
deleted file mode 100644 |
index 82d847c1adcd00678f7da886b0dc5fdf0c302be1..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/core/animation/ShadowListInterpolationType.h |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef ShadowListInterpolationType_h |
-#define ShadowListInterpolationType_h |
- |
-#include "core/animation/CSSInterpolationType.h" |
- |
-namespace blink { |
- |
-class ShadowList; |
- |
-class ShadowListInterpolationType : public CSSInterpolationType { |
-public: |
- ShadowListInterpolationType(CSSPropertyID property) |
- : CSSInterpolationType(property) |
- { } |
- |
- PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const InterpolationEnvironment&) const final; |
- void composite(UnderlyingValue&, double underlyingFraction, const InterpolationValue&) const final; |
- void apply(const InterpolableValue&, const NonInterpolableValue*, InterpolationEnvironment&) const final; |
- |
-private: |
- PassOwnPtr<InterpolationValue> convertShadowList(const ShadowList*, double zoom) const; |
- PassOwnPtr<InterpolationValue> createNeutralValue() const; |
- |
- PassOwnPtr<InterpolationValue> maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const final; |
- PassOwnPtr<InterpolationValue> maybeConvertInitial() const final; |
- PassOwnPtr<InterpolationValue> maybeConvertInherit(const StyleResolverState*, ConversionCheckers&) const final; |
- PassOwnPtr<InterpolationValue> maybeConvertValue(const CSSValue&, const StyleResolverState*, ConversionCheckers&) const final; |
- PassOwnPtr<PairwisePrimitiveInterpolation> mergeSingleConversions(InterpolationValue& startValue, InterpolationValue& endValue) const final; |
-}; |
- |
-} // namespace blink |
- |
-#endif // ShadowListInterpolationType_h |