Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Side by Side Diff: sky/engine/core/animation/DefaultStyleInterpolation.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698