| 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/AnimationEffectReadOnly.h" | 9 #include "core/animation/AnimationEffectReadOnly.h" |
| 10 #include "core/animation/EffectModel.h" | 10 #include "core/animation/EffectModel.h" |
| 11 #include "core/animation/PropertyHandle.h" | 11 #include "core/animation/PropertyHandle.h" |
| 12 #include "core/animation/animatable/AnimatableValue.h" | 12 #include "core/animation/animatable/AnimatableValue.h" |
| 13 #include "wtf/Allocator.h" | 13 #include "platform/wtf/Allocator.h" |
| 14 #include "wtf/Forward.h" | 14 #include "platform/wtf/Forward.h" |
| 15 #include "wtf/RefCounted.h" | 15 #include "platform/wtf/RefCounted.h" |
| 16 #include "wtf/RefPtr.h" | 16 #include "platform/wtf/RefPtr.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 using PropertyHandleSet = HashSet<PropertyHandle>; | 20 using PropertyHandleSet = HashSet<PropertyHandle>; |
| 21 | 21 |
| 22 class Element; | 22 class Element; |
| 23 class ComputedStyle; | 23 class ComputedStyle; |
| 24 | 24 |
| 25 // Represents a user specificed keyframe in a KeyframeEffect. | 25 // Represents a user specificed keyframe in a KeyframeEffect. |
| 26 // http://w3c.github.io/web-animations/#keyframe | 26 // http://w3c.github.io/web-animations/#keyframe |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 double m_offset; | 131 double m_offset; |
| 132 EffectModel::CompositeOperation m_composite; | 132 EffectModel::CompositeOperation m_composite; |
| 133 RefPtr<TimingFunction> m_easing; | 133 RefPtr<TimingFunction> m_easing; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 using PropertySpecificKeyframe = Keyframe::PropertySpecificKeyframe; | 136 using PropertySpecificKeyframe = Keyframe::PropertySpecificKeyframe; |
| 137 | 137 |
| 138 } // namespace blink | 138 } // namespace blink |
| 139 | 139 |
| 140 #endif // Keyframe_h | 140 #endif // Keyframe_h |
| OLD | NEW |