Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Side by Side Diff: Source/core/animation/css/CSSAnimations.cpp

Issue 327773004: Remove include of StyleResolverState.h from StyleResolver.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased for landing Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/animation/EffectInput.cpp ('k') | Source/core/css/ElementRuleCollector.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 22 matching lines...) Expand all
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/css/CSSAnimatableValueFactory.h" 39 #include "core/animation/css/CSSAnimatableValueFactory.h"
40 #include "core/animation/css/CSSPropertyEquality.h" 40 #include "core/animation/css/CSSPropertyEquality.h"
41 #include "core/animation/interpolation/LegacyStyleInterpolation.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/StyleResolver.h" 44 #include "core/css/resolver/StyleResolver.h"
44 #include "core/dom/Element.h" 45 #include "core/dom/Element.h"
45 #include "core/dom/PseudoElement.h" 46 #include "core/dom/PseudoElement.h"
46 #include "core/events/TransitionEvent.h" 47 #include "core/events/TransitionEvent.h"
47 #include "core/events/WebKitAnimationEvent.h" 48 #include "core/events/WebKitAnimationEvent.h"
48 #include "core/frame/UseCounter.h" 49 #include "core/frame/UseCounter.h"
49 #include "core/rendering/RenderLayer.h" 50 #include "core/rendering/RenderLayer.h"
50 #include "core/rendering/RenderObject.h" 51 #include "core/rendering/RenderObject.h"
51 #include "core/rendering/style/KeyframeList.h" 52 #include "core/rendering/style/KeyframeList.h"
52 #include "platform/animation/TimingFunction.h" 53 #include "platform/animation/TimingFunction.h"
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 void CSSAnimationUpdate::trace(Visitor* visitor) 837 void CSSAnimationUpdate::trace(Visitor* visitor)
837 { 838 {
838 visitor->trace(m_newTransitions); 839 visitor->trace(m_newTransitions);
839 visitor->trace(m_activeInterpolationsForAnimations); 840 visitor->trace(m_activeInterpolationsForAnimations);
840 visitor->trace(m_activeInterpolationsForTransitions); 841 visitor->trace(m_activeInterpolationsForTransitions);
841 visitor->trace(m_newAnimations); 842 visitor->trace(m_newAnimations);
842 visitor->trace(m_cancelledAnimationPlayers); 843 visitor->trace(m_cancelledAnimationPlayers);
843 } 844 }
844 845
845 } // namespace WebCore 846 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/animation/EffectInput.cpp ('k') | Source/core/css/ElementRuleCollector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698