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

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

Issue 408443004: Web Animations: Remove confusing interpolation subdirectory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
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 18 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « Source/core/animation/css/CSSAnimations.h ('k') | Source/core/animation/interpolation/DefaultStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698