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

Side by Side Diff: Source/core/animation/Keyframe.h

Issue 758533004: Oilpan: enable eager tracing of common animation objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sof-trace-eager-final
Patch Set: rebased Created 6 years 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 Keyframe_h 5 #ifndef Keyframe_h
6 #define Keyframe_h 6 #define Keyframe_h
7 7
8 #include "core/CSSPropertyNames.h" 8 #include "core/CSSPropertyNames.h"
9 #include "core/animation/AnimationEffect.h" 9 #include "core/animation/AnimationEffect.h"
10 #include "core/animation/AnimationNode.h" 10 #include "core/animation/AnimationNode.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 , m_composite(composite) 90 , m_composite(composite)
91 , m_easing(easing) 91 , m_easing(easing)
92 { 92 {
93 } 93 }
94 94
95 double m_offset; 95 double m_offset;
96 AnimationEffect::CompositeOperation m_composite; 96 AnimationEffect::CompositeOperation m_composite;
97 RefPtr<TimingFunction> m_easing; 97 RefPtr<TimingFunction> m_easing;
98 }; 98 };
99 99
100 } 100 WILL_BE_EAGERLY_TRACED(Keyframe);
101 WILL_BE_EAGERLY_TRACED(Keyframe::PropertySpecificKeyframe);
101 102
102 #endif 103 } // namespace blink
104
105 #endif // Keyframe_h
OLDNEW
« no previous file with comments | « Source/core/animation/InterpolationEffect.h ('k') | Source/core/animation/KeyframeEffectModel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698