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

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

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/animation/DocumentAnimations.cpp ('k') | Source/core/clipboard/DataTransfer.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « Source/core/animation/DocumentAnimations.cpp ('k') | Source/core/clipboard/DataTransfer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698