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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #include "core/css/CSSValueList.h" | 46 #include "core/css/CSSValueList.h" |
47 #include "core/css/resolver/CSSToStyleMap.h" | 47 #include "core/css/resolver/CSSToStyleMap.h" |
48 #include "core/css/resolver/StyleResolver.h" | 48 #include "core/css/resolver/StyleResolver.h" |
49 #include "core/dom/Element.h" | 49 #include "core/dom/Element.h" |
50 #include "core/dom/PseudoElement.h" | 50 #include "core/dom/PseudoElement.h" |
51 #include "core/dom/StyleEngine.h" | 51 #include "core/dom/StyleEngine.h" |
52 #include "core/events/AnimationEvent.h" | 52 #include "core/events/AnimationEvent.h" |
53 #include "core/events/TransitionEvent.h" | 53 #include "core/events/TransitionEvent.h" |
54 #include "core/frame/UseCounter.h" | 54 #include "core/frame/UseCounter.h" |
55 #include "core/layout/LayoutObject.h" | 55 #include "core/layout/LayoutObject.h" |
56 #include "core/layout/style/KeyframeList.h" | 56 #include "core/style/KeyframeList.h" |
57 #include "core/paint/DeprecatedPaintLayer.h" | 57 #include "core/paint/DeprecatedPaintLayer.h" |
58 #include "platform/animation/TimingFunction.h" | 58 #include "platform/animation/TimingFunction.h" |
59 #include "public/platform/Platform.h" | 59 #include "public/platform/Platform.h" |
60 #include "wtf/BitArray.h" | 60 #include "wtf/BitArray.h" |
61 #include "wtf/HashSet.h" | 61 #include "wtf/HashSet.h" |
62 | 62 |
63 namespace blink { | 63 namespace blink { |
64 | 64 |
65 namespace { | 65 namespace { |
66 | 66 |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 visitor->trace(m_activeInterpolationsForAnimations); | 833 visitor->trace(m_activeInterpolationsForAnimations); |
834 visitor->trace(m_activeInterpolationsForTransitions); | 834 visitor->trace(m_activeInterpolationsForTransitions); |
835 visitor->trace(m_newAnimations); | 835 visitor->trace(m_newAnimations); |
836 visitor->trace(m_suppressedAnimationPlayers); | 836 visitor->trace(m_suppressedAnimationPlayers); |
837 visitor->trace(m_animationsWithUpdates); | 837 visitor->trace(m_animationsWithUpdates); |
838 visitor->trace(m_animationsWithStyleUpdates); | 838 visitor->trace(m_animationsWithStyleUpdates); |
839 #endif | 839 #endif |
840 } | 840 } |
841 | 841 |
842 } // namespace blink | 842 } // namespace blink |
OLD | NEW |