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

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

Issue 2222313002: Implement DocumentTimeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update global-interface-listing-expected.txt Created 4 years, 4 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/AnimationStackTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationStackTest.cpp b/third_party/WebKit/Source/core/animation/AnimationStackTest.cpp
index c7ddd8b59a06804b91fe00590d88f4e7779db951..9082448034cafa4286e6c75593e883090dfff8a6 100644
--- a/third_party/WebKit/Source/core/animation/AnimationStackTest.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationStackTest.cpp
@@ -5,8 +5,8 @@
#include "core/animation/AnimationStack.h"
#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/KeyframeEffectModel.h"
#include "core/animation/LegacyStyleInterpolation.h"
@@ -24,7 +24,7 @@ protected:
pageHolder = DummyPageHolder::create();
document = &pageHolder->document();
document->animationClock().resetTimeForTesting();
- timeline = AnimationTimeline::create(document.get());
+ timeline = DocumentTimeline::create(document.get());
element = document->createElement("foo", ASSERT_NO_EXCEPTION);
}
@@ -82,7 +82,7 @@ protected:
std::unique_ptr<DummyPageHolder> pageHolder;
Persistent<Document> document;
- Persistent<AnimationTimeline> timeline;
+ Persistent<DocumentTimeline> timeline;
Persistent<Element> element;
};

Powered by Google App Engine
This is Rietveld 408576698