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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationTest.cpp

Issue 2948193002: Merge AnimationTimeline and DocumentTimeline (Closed)
Patch Set: Fix rebase error Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/animation/AnimationTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationTest.cpp b/third_party/WebKit/Source/core/animation/AnimationTest.cpp
index 6c2f2dd75066779a23edae8deeaf7e5aef4da9e1..006024a5a01e57258f103ce9a2de5e502ba25e0c 100644
--- a/third_party/WebKit/Source/core/animation/AnimationTest.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationTest.cpp
@@ -32,8 +32,8 @@
#include <memory>
#include "core/animation/AnimationClock.h"
-#include "core/animation/AnimationTimeline.h"
#include "core/animation/CompositorPendingAnimations.h"
+#include "core/animation/DocumentTimeline.h"
#include "core/animation/ElementAnimations.h"
#include "core/animation/KeyframeEffect.h"
#include "core/dom/DOMNodeIds.h"
@@ -63,7 +63,7 @@ class AnimationAnimationTest : public RenderingTest {
page_holder = DummyPageHolder::Create();
document = &page_holder->GetDocument();
document->GetAnimationClock().ResetTimeForTesting();
- timeline = AnimationTimeline::Create(document.Get());
+ timeline = DocumentTimeline::Create(document.Get());
timeline->ResetForTesting();
animation = timeline->Play(0);
animation->setStartTime(0, false);
@@ -92,7 +92,7 @@ class AnimationAnimationTest : public RenderingTest {
}
Persistent<Document> document;
- Persistent<AnimationTimeline> timeline;
+ Persistent<DocumentTimeline> timeline;
Persistent<Animation> animation;
std::unique_ptr<DummyPageHolder> page_holder;
};
« no previous file with comments | « third_party/WebKit/Source/core/animation/Animation.cpp ('k') | third_party/WebKit/Source/core/animation/AnimationTimeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698