| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "core/animation/AnimationPlayer.h" | 36 #include "core/animation/AnimationPlayer.h" |
| 37 #include "core/animation/AnimationTimeline.h" | 37 #include "core/animation/AnimationTimeline.h" |
| 38 #include "core/animation/CompositorAnimations.h" | 38 #include "core/animation/CompositorAnimations.h" |
| 39 #include "core/animation/DeferredLegacyStyleInterpolation.h" | 39 #include "core/animation/DeferredLegacyStyleInterpolation.h" |
| 40 #include "core/animation/Interpolation.h" | 40 #include "core/animation/Interpolation.h" |
| 41 #include "core/animation/KeyframeEffectModel.h" | 41 #include "core/animation/KeyframeEffectModel.h" |
| 42 #include "core/animation/css/CSSAnimatableValueFactory.h" | 42 #include "core/animation/css/CSSAnimatableValueFactory.h" |
| 43 #include "core/animation/css/CSSPropertyEquality.h" | 43 #include "core/animation/css/CSSPropertyEquality.h" |
| 44 #include "core/css/CSSKeyframeRule.h" | 44 #include "core/css/CSSKeyframeRule.h" |
| 45 #include "core/css/CSSPropertyMetadata.h" | 45 #include "core/css/CSSPropertyMetadata.h" |
| 46 #include "core/css/CSSValueList.h" |
| 46 #include "core/css/resolver/CSSToStyleMap.h" | 47 #include "core/css/resolver/CSSToStyleMap.h" |
| 47 #include "core/css/resolver/StyleResolver.h" | 48 #include "core/css/resolver/StyleResolver.h" |
| 48 #include "core/dom/Element.h" | 49 #include "core/dom/Element.h" |
| 49 #include "core/dom/PseudoElement.h" | 50 #include "core/dom/PseudoElement.h" |
| 50 #include "core/dom/StyleEngine.h" | 51 #include "core/dom/StyleEngine.h" |
| 51 #include "core/events/TransitionEvent.h" | 52 #include "core/events/TransitionEvent.h" |
| 52 #include "core/events/WebKitAnimationEvent.h" | 53 #include "core/events/WebKitAnimationEvent.h" |
| 53 #include "core/frame/UseCounter.h" | 54 #include "core/frame/UseCounter.h" |
| 54 #include "core/layout/Layer.h" | 55 #include "core/layout/Layer.h" |
| 55 #include "core/layout/LayoutObject.h" | 56 #include "core/layout/LayoutObject.h" |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 visitor->trace(m_activeInterpolationsForAnimations); | 805 visitor->trace(m_activeInterpolationsForAnimations); |
| 805 visitor->trace(m_activeInterpolationsForTransitions); | 806 visitor->trace(m_activeInterpolationsForTransitions); |
| 806 visitor->trace(m_newAnimations); | 807 visitor->trace(m_newAnimations); |
| 807 visitor->trace(m_suppressedAnimationPlayers); | 808 visitor->trace(m_suppressedAnimationPlayers); |
| 808 visitor->trace(m_animationsWithUpdates); | 809 visitor->trace(m_animationsWithUpdates); |
| 809 visitor->trace(m_animationsWithStyleUpdates); | 810 visitor->trace(m_animationsWithStyleUpdates); |
| 810 #endif | 811 #endif |
| 811 } | 812 } |
| 812 | 813 |
| 813 } // namespace blink | 814 } // namespace blink |
| OLD | NEW |