| 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/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/animation/AnimationEffect.h" | 9 #include "core/animation/AnimationEffect.h" |
| 10 #include "core/animation/EffectModel.h" | 10 #include "core/animation/EffectModel.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 , m_composite(composite) | 98 , m_composite(composite) |
| 99 , m_easing(easing) | 99 , m_easing(easing) |
| 100 { | 100 { |
| 101 } | 101 } |
| 102 | 102 |
| 103 double m_offset; | 103 double m_offset; |
| 104 EffectModel::CompositeOperation m_composite; | 104 EffectModel::CompositeOperation m_composite; |
| 105 RefPtr<TimingFunction> m_easing; | 105 RefPtr<TimingFunction> m_easing; |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 using PropertySpecificKeyframe = Keyframe::PropertySpecificKeyframe; |
| 109 |
| 108 } // namespace blink | 110 } // namespace blink |
| 109 | 111 |
| 110 #endif // Keyframe_h | 112 #endif // Keyframe_h |
| OLD | NEW |