| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "core/animation/css/CSSAnimations.h" | 32 #include "core/animation/css/CSSAnimations.h" |
| 33 | 33 |
| 34 #include "core/StylePropertyShorthand.h" | 34 #include "core/StylePropertyShorthand.h" |
| 35 #include "core/animation/ActiveAnimations.h" | 35 #include "core/animation/ActiveAnimations.h" |
| 36 #include "core/animation/AnimationTimeline.h" | 36 #include "core/animation/AnimationTimeline.h" |
| 37 #include "core/animation/CompositorAnimations.h" | 37 #include "core/animation/CompositorAnimations.h" |
| 38 #include "core/animation/KeyframeEffectModel.h" | 38 #include "core/animation/KeyframeEffectModel.h" |
| 39 #include "core/animation/LegacyStyleInterpolation.h" |
| 39 #include "core/animation/css/CSSAnimatableValueFactory.h" | 40 #include "core/animation/css/CSSAnimatableValueFactory.h" |
| 40 #include "core/animation/css/CSSPropertyEquality.h" | 41 #include "core/animation/css/CSSPropertyEquality.h" |
| 41 #include "core/animation/interpolation/LegacyStyleInterpolation.h" | |
| 42 #include "core/css/CSSKeyframeRule.h" | 42 #include "core/css/CSSKeyframeRule.h" |
| 43 #include "core/css/resolver/CSSToStyleMap.h" | 43 #include "core/css/resolver/CSSToStyleMap.h" |
| 44 #include "core/css/resolver/StyleResolver.h" | 44 #include "core/css/resolver/StyleResolver.h" |
| 45 #include "core/dom/Element.h" | 45 #include "core/dom/Element.h" |
| 46 #include "core/dom/PseudoElement.h" | 46 #include "core/dom/PseudoElement.h" |
| 47 #include "core/events/TransitionEvent.h" | 47 #include "core/events/TransitionEvent.h" |
| 48 #include "core/events/WebKitAnimationEvent.h" | 48 #include "core/events/WebKitAnimationEvent.h" |
| 49 #include "core/frame/UseCounter.h" | 49 #include "core/frame/UseCounter.h" |
| 50 #include "core/rendering/RenderLayer.h" | 50 #include "core/rendering/RenderLayer.h" |
| 51 #include "core/rendering/RenderObject.h" | 51 #include "core/rendering/RenderObject.h" |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 #if ENABLE(OILPAN) | 839 #if ENABLE(OILPAN) |
| 840 visitor->trace(m_newTransitions); | 840 visitor->trace(m_newTransitions); |
| 841 visitor->trace(m_activeInterpolationsForAnimations); | 841 visitor->trace(m_activeInterpolationsForAnimations); |
| 842 visitor->trace(m_activeInterpolationsForTransitions); | 842 visitor->trace(m_activeInterpolationsForTransitions); |
| 843 visitor->trace(m_newAnimations); | 843 visitor->trace(m_newAnimations); |
| 844 visitor->trace(m_cancelledAnimationPlayers); | 844 visitor->trace(m_cancelledAnimationPlayers); |
| 845 #endif | 845 #endif |
| 846 } | 846 } |
| 847 | 847 |
| 848 } // namespace blink | 848 } // namespace blink |
| OLD | NEW |