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

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

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
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index 2d874b3159aae529462e18e09e8f7429ed9ee005..a987a549ac6b0415e7ea62405dbaca06792d5583 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -61,7 +61,7 @@
namespace blink {
class AnimationClock;
-class AnimationTimeline;
+class DocumentTimeline;
class AXObjectCache;
class Attr;
class CDATASection;
@@ -993,7 +993,7 @@ public:
Locale& getCachedLocale(const AtomicString& locale = nullAtom);
AnimationClock& animationClock();
- AnimationTimeline& timeline() const { return *m_timeline; }
+ DocumentTimeline& timeline() const { return *m_timeline; }
CompositorPendingAnimations& compositorPendingAnimations() { return *m_compositorPendingAnimations; }
void addToTopLayer(Element*, const Element* before = nullptr);
@@ -1385,7 +1385,7 @@ private:
using LocaleIdentifierToLocaleMap = HashMap<AtomicString, std::unique_ptr<Locale>>;
LocaleIdentifierToLocaleMap m_localeCache;
- Member<AnimationTimeline> m_timeline;
+ Member<DocumentTimeline> m_timeline;
Member<CompositorPendingAnimations> m_compositorPendingAnimations;
Member<Document> m_templateDocument;
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698