| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SizeInterpolationFunctions_h | 5 #ifndef SizeInterpolationFunctions_h |
| 6 #define SizeInterpolationFunctions_h | 6 #define SizeInterpolationFunctions_h |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include "core/animation/InterpolationValue.h" | 9 #include "core/animation/InterpolationValue.h" |
| 9 #include "core/animation/PairwiseInterpolationValue.h" | 10 #include "core/animation/PairwiseInterpolationValue.h" |
| 10 #include "core/style/FillLayer.h" | 11 #include "core/style/FillLayer.h" |
| 11 #include <memory> | |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class CSSToLengthConversionData; | 15 class CSSToLengthConversionData; |
| 16 class CSSValue; | 16 class CSSValue; |
| 17 | 17 |
| 18 class SizeInterpolationFunctions { | 18 class SizeInterpolationFunctions { |
| 19 STATIC_ONLY(SizeInterpolationFunctions); | 19 STATIC_ONLY(SizeInterpolationFunctions); |
| 20 | 20 |
| 21 public: | 21 public: |
| (...skipping 17 matching lines...) Expand all Loading... |
| 39 const InterpolableValue& interpolableValueA, | 39 const InterpolableValue& interpolableValueA, |
| 40 const NonInterpolableValue* nonInterpolableValueA, | 40 const NonInterpolableValue* nonInterpolableValueA, |
| 41 const InterpolableValue& interpolableValueB, | 41 const InterpolableValue& interpolableValueB, |
| 42 const NonInterpolableValue* nonInterpolableValueB, | 42 const NonInterpolableValue* nonInterpolableValueB, |
| 43 const CSSToLengthConversionData&); | 43 const CSSToLengthConversionData&); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace blink | 46 } // namespace blink |
| 47 | 47 |
| 48 #endif // SizeInterpolationFunctions_h | 48 #endif // SizeInterpolationFunctions_h |
| OLD | NEW |