| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CSSAnimationUpdate_h | 5 #ifndef CSSAnimationUpdate_h |
| 6 #define CSSAnimationUpdate_h | 6 #define CSSAnimationUpdate_h |
| 7 | 7 |
| 8 #include "core/animation/EffectStack.h" | 8 #include "core/animation/EffectStack.h" |
| 9 #include "core/animation/InertEffect.h" | 9 #include "core/animation/InertEffect.h" |
| 10 #include "core/animation/Interpolation.h" | 10 #include "core/animation/Interpolation.h" |
| 11 #include "core/animation/KeyframeEffectModel.h" | 11 #include "core/animation/KeyframeEffectModel.h" |
| 12 #include "core/animation/css/CSSAnimatableValueFactory.h" | 12 #include "core/animation/css/CSSAnimatableValueFactory.h" |
| 13 #include "core/css/CSSKeyframesRule.h" | 13 #include "core/css/CSSKeyframesRule.h" |
| 14 #include "core/css/CSSPropertyEquality.h" | 14 #include "core/css/CSSPropertyEquality.h" |
| 15 #include "wtf/Allocator.h" | 15 #include "platform/wtf/Allocator.h" |
| 16 #include "wtf/HashMap.h" | 16 #include "platform/wtf/HashMap.h" |
| 17 #include "wtf/Vector.h" | 17 #include "platform/wtf/Vector.h" |
| 18 #include "wtf/text/AtomicString.h" | 18 #include "platform/wtf/text/AtomicString.h" |
| 19 | 19 |
| 20 namespace blink { | 20 namespace blink { |
| 21 | 21 |
| 22 class Animation; | 22 class Animation; |
| 23 | 23 |
| 24 class NewCSSAnimation { | 24 class NewCSSAnimation { |
| 25 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); | 25 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); |
| 26 | 26 |
| 27 public: | 27 public: |
| 28 NewCSSAnimation(AtomicString name, | 28 NewCSSAnimation(AtomicString name, |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 ActiveInterpolationsMap m_activeInterpolationsForAnimations; | 301 ActiveInterpolationsMap m_activeInterpolationsForAnimations; |
| 302 ActiveInterpolationsMap m_activeInterpolationsForCustomTransitions; | 302 ActiveInterpolationsMap m_activeInterpolationsForCustomTransitions; |
| 303 ActiveInterpolationsMap m_activeInterpolationsForStandardTransitions; | 303 ActiveInterpolationsMap m_activeInterpolationsForStandardTransitions; |
| 304 | 304 |
| 305 friend class PendingAnimationUpdate; | 305 friend class PendingAnimationUpdate; |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 } // namespace blink | 308 } // namespace blink |
| 309 | 309 |
| 310 #endif | 310 #endif |
| OLD | NEW |