| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 LengthStyleInterpolation_h | 5 #ifndef LengthStyleInterpolation_h |
| 6 #define LengthStyleInterpolation_h | 6 #define LengthStyleInterpolation_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/animation/StyleInterpolation.h" | 9 #include "core/animation/StyleInterpolation.h" |
| 10 #include "core/css/CSSPrimitiveValue.h" | 10 #include "core/css/CSSPrimitiveValue.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class ComputedStyle; | 14 class ComputedStyle; |
| 15 class Length; | 15 class Length; |
| 16 | 16 |
| 17 class CORE_EXPORT LengthStyleInterpolation : public StyleInterpolation { | 17 class CORE_EXPORT LengthStyleInterpolation : public StyleInterpolation { |
| 18 public: | 18 public: |
| 19 typedef void (ComputedStyle::*LengthSetter)(const Length&); | 19 typedef void (ComputedStyle::*LengthSetter)(const Length&); |
| 20 typedef void NonInterpolableType; | 20 typedef void NonInterpolableType; |
| 21 | 21 |
| 22 static PassRefPtrWillBeRawPtr<LengthStyleInterpolation> create(const CSSValu
e& start, const CSSValue& end, CSSPropertyID id, InterpolationRange range) | 22 static PassRefPtrWillBeRawPtr<LengthStyleInterpolation> create(const CSSValu
e& start, const CSSValue& end, CSSPropertyID id, InterpolationRange range) |
| 23 { | 23 { |
| 24 return adoptRefWillBeNoop(new LengthStyleInterpolation(toInterpolableVal
ue(start, id), toInterpolableValue(end, id), id, range)); | 24 return adoptRefWillBeNoop(new LengthStyleInterpolation(toInterpolableVal
ue(start, id), toInterpolableValue(end, id), id, range)); |
| 25 } | 25 } |
| 26 | 26 |
| 27 static bool canCreateFrom(const CSSValue&, CSSPropertyID = CSSPropertyInvali
d); | 27 static bool canCreateFrom(const CSSValue, CSSPropertyID = CSSPropertyInvalid
); |
| 28 | 28 |
| 29 virtual void apply(StyleResolverState&) const override; | 29 virtual void apply(StyleResolverState&) const override; |
| 30 | 30 |
| 31 DECLARE_VIRTUAL_TRACE(); | 31 DECLARE_VIRTUAL_TRACE(); |
| 32 | 32 |
| 33 static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const C
SSValue&, CSSPropertyID = CSSPropertyInvalid); | 33 static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(CSSValu
e, CSSPropertyID = CSSPropertyInvalid); |
| 34 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> fromInterpolableValue(const
InterpolableValue&, InterpolationRange); | 34 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> fromInterpolableValue(const
InterpolableValue&, InterpolationRange); |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 LengthStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, Pa
ssOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, InterpolationRang
e range) | 37 LengthStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, Pa
ssOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, InterpolationRang
e range) |
| 38 : StyleInterpolation(start, end, id) | 38 : StyleInterpolation(start, end, id) |
| 39 , m_range(range) | 39 , m_range(range) |
| 40 , m_lengthSetter(nullptr) | 40 , m_lengthSetter(nullptr) |
| 41 { | 41 { |
| 42 if (isPixelsOrPercentOnly(*m_start) && isPixelsOrPercentOnly(*m_end)) | 42 if (isPixelsOrPercentOnly(*m_start) && isPixelsOrPercentOnly(*m_end)) |
| 43 m_lengthSetter = lengthSetterForProperty(id); | 43 m_lengthSetter = lengthSetterForProperty(id); |
| 44 } | 44 } |
| 45 | 45 |
| 46 static bool isPixelsOrPercentOnly(const InterpolableValue&); | 46 static bool isPixelsOrPercentOnly(const InterpolableValue&); |
| 47 static LengthSetter lengthSetterForProperty(CSSPropertyID); | 47 static LengthSetter lengthSetterForProperty(CSSPropertyID); |
| 48 | 48 |
| 49 InterpolationRange m_range; | 49 InterpolationRange m_range; |
| 50 LengthSetter m_lengthSetter; | 50 LengthSetter m_lengthSetter; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } | 53 } |
| 54 | 54 |
| 55 #endif | 55 #endif |
| OLD | NEW |