| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/resolver/CSSToStyleMap.h" | 46 #include "core/css/resolver/CSSToStyleMap.h" |
| 47 #include "core/css/resolver/StyleResolver.h" | 47 #include "core/css/resolver/StyleResolver.h" |
| 48 #include "core/dom/Element.h" | 48 #include "core/dom/Element.h" |
| 49 #include "core/dom/PseudoElement.h" | 49 #include "core/dom/PseudoElement.h" |
| 50 #include "core/dom/StyleEngine.h" | 50 #include "core/dom/StyleEngine.h" |
| 51 #include "core/events/TransitionEvent.h" | 51 #include "core/events/TransitionEvent.h" |
| 52 #include "core/events/WebKitAnimationEvent.h" | 52 #include "core/events/WebKitAnimationEvent.h" |
| 53 #include "core/frame/UseCounter.h" | 53 #include "core/frame/UseCounter.h" |
| 54 #include "core/rendering/RenderLayer.h" | 54 #include "core/layout/Layer.h" |
| 55 #include "core/rendering/RenderObject.h" | 55 #include "core/rendering/RenderObject.h" |
| 56 #include "core/rendering/style/KeyframeList.h" | 56 #include "core/rendering/style/KeyframeList.h" |
| 57 #include "platform/animation/TimingFunction.h" | 57 #include "platform/animation/TimingFunction.h" |
| 58 #include "public/platform/Platform.h" | 58 #include "public/platform/Platform.h" |
| 59 #include "wtf/BitArray.h" | 59 #include "wtf/BitArray.h" |
| 60 #include "wtf/HashSet.h" | 60 #include "wtf/HashSet.h" |
| 61 | 61 |
| 62 namespace blink { | 62 namespace blink { |
| 63 | 63 |
| 64 namespace { | 64 namespace { |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 visitor->trace(m_newTransitions); | 787 visitor->trace(m_newTransitions); |
| 788 visitor->trace(m_activeInterpolationsForAnimations); | 788 visitor->trace(m_activeInterpolationsForAnimations); |
| 789 visitor->trace(m_activeInterpolationsForTransitions); | 789 visitor->trace(m_activeInterpolationsForTransitions); |
| 790 visitor->trace(m_newAnimations); | 790 visitor->trace(m_newAnimations); |
| 791 visitor->trace(m_suppressedAnimationPlayers); | 791 visitor->trace(m_suppressedAnimationPlayers); |
| 792 visitor->trace(m_animationsWithUpdates); | 792 visitor->trace(m_animationsWithUpdates); |
| 793 #endif | 793 #endif |
| 794 } | 794 } |
| 795 | 795 |
| 796 } // namespace blink | 796 } // namespace blink |
| OLD | NEW |