| 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 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 Loading... |
| 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 WILL_BE_EAGERLY_TRACED(Keyframe); | |
| 101 WILL_BE_EAGERLY_TRACED(Keyframe::PropertySpecificKeyframe); | |
| 102 | |
| 103 } // namespace blink | 100 } // namespace blink |
| 104 | 101 |
| 105 #endif // Keyframe_h | 102 #endif // Keyframe_h |
| OLD | NEW |