| 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 DefaultStyleInterpolation_h | 5 #ifndef DefaultStyleInterpolation_h |
| 6 #define DefaultStyleInterpolation_h | 6 #define DefaultStyleInterpolation_h |
| 7 | 7 |
| 8 #include "core/animation/StyleInterpolation.h" | 8 #include "core/animation/StyleInterpolation.h" |
| 9 #include "core/css/resolver/StyleBuilder.h" | 9 #include "core/css/resolver/StyleBuilder.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class DefaultStyleInterpolation : public StyleInterpolation { | 13 class DefaultStyleInterpolation : public StyleInterpolation { |
| 14 public: | 14 public: |
| 15 static PassRefPtr<DefaultStyleInterpolation> create(CSSValue* start, CSSValu
e* end, CSSPropertyID id) | 15 static PassRefPtr<DefaultStyleInterpolation> create(CSSValue* start, CSSValu
e* end, CSSPropertyID id) |
| 16 { | 16 { |
| 17 return adoptRef(new DefaultStyleInterpolation(start, end, id)); | 17 return adoptRef(new DefaultStyleInterpolation(start, end, id)); |
| 18 } | 18 } |
| 19 | 19 |
| 20 virtual void apply(StyleResolverState& state) const | 20 virtual void apply(StyleResolverState& state) const |
| 21 { | 21 { |
| 22 StyleBuilder::applyProperty(m_id, state, toInterpolableBool(m_cachedValu
e.get())->value() ? m_endCSSValue.get() : m_startCSSValue.get()); | 22 StyleBuilder::applyProperty(m_id, state, toInterpolableBool(m_cachedValu
e.get())->value() ? m_endCSSValue.get() : m_startCSSValue.get()); |
| 23 } | 23 } |
| 24 | 24 |
| 25 virtual void trace(Visitor* visitor) override | |
| 26 { | |
| 27 StyleInterpolation::trace(visitor); | |
| 28 visitor->trace(m_startCSSValue); | |
| 29 visitor->trace(m_endCSSValue); | |
| 30 } | |
| 31 | |
| 32 private: | 25 private: |
| 33 DefaultStyleInterpolation(CSSValue* start, CSSValue* end, CSSPropertyID id) | 26 DefaultStyleInterpolation(CSSValue* start, CSSValue* end, CSSPropertyID id) |
| 34 : StyleInterpolation(InterpolableBool::create(false), InterpolableBool::
create(true), id) | 27 : StyleInterpolation(InterpolableBool::create(false), InterpolableBool::
create(true), id) |
| 35 , m_startCSSValue(start) | 28 , m_startCSSValue(start) |
| 36 , m_endCSSValue(end) | 29 , m_endCSSValue(end) |
| 37 { | 30 { |
| 38 } | 31 } |
| 39 | 32 |
| 40 RefPtr<CSSValue> m_startCSSValue; | 33 RefPtr<CSSValue> m_startCSSValue; |
| 41 RefPtr<CSSValue> m_endCSSValue; | 34 RefPtr<CSSValue> m_endCSSValue; |
| 42 }; | 35 }; |
| 43 | 36 |
| 44 } | 37 } |
| 45 | 38 |
| 46 #endif | 39 #endif |
| OLD | NEW |