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

Unified Diff: sky/engine/core/dom/Document.h

Issue 772673002: Fix Animations, Remove Compostior Animations. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: CompositorPendingAnimations -> PendingAnimations Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/css/CSSComputedStyleDeclaration.cpp ('k') | sky/engine/core/dom/Element.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/Document.h
diff --git a/sky/engine/core/dom/Document.h b/sky/engine/core/dom/Document.h
index 1eb38c68532186fc87aa045d8f90b8c7e74d29ff..021f147b6049a63b1e11f6bc3022a5645d024d41 100644
--- a/sky/engine/core/dom/Document.h
+++ b/sky/engine/core/dom/Document.h
@@ -31,7 +31,7 @@
#include "sky/engine/bindings/core/v8/ExceptionStatePlaceholder.h"
#include "sky/engine/bindings/core/v8/ScriptValue.h"
#include "sky/engine/core/animation/AnimationClock.h"
-#include "sky/engine/core/animation/CompositorPendingAnimations.h"
+#include "sky/engine/core/animation/PendingAnimations.h"
#include "sky/engine/core/dom/ContainerNode.h"
#include "sky/engine/core/dom/DocumentInit.h"
#include "sky/engine/core/dom/DocumentLifecycle.h"
@@ -563,7 +563,7 @@ public:
AnimationClock& animationClock() { return m_animationClock; }
AnimationTimeline& timeline() const { return *m_timeline; }
- CompositorPendingAnimations& compositorPendingAnimations() { return m_compositorPendingAnimations; }
+ PendingAnimations& pendingAnimations() { return m_pendingAnimations; }
// A non-null m_templateDocumentHost implies that |this| was created by ensureTemplateDocument().
bool isTemplateDocument() const { return !!m_templateDocumentHost; }
@@ -789,7 +789,7 @@ private:
AnimationClock m_animationClock;
RefPtr<AnimationTimeline> m_timeline;
- CompositorPendingAnimations m_compositorPendingAnimations;
+ PendingAnimations m_pendingAnimations;
RefPtr<Document> m_templateDocument;
// With Oilpan the templateDocument and the templateDocumentHost
« no previous file with comments | « sky/engine/core/css/CSSComputedStyleDeclaration.cpp ('k') | sky/engine/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698