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 f0947837142e274fb6d3cc7f1cb4892ae8e95745..266309f21f296c7d1aaebcb1fba7e4116eb134bd 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.h |
+++ b/third_party/WebKit/Source/core/dom/Document.h |
@@ -953,7 +953,7 @@ public: |
// Return a Locale for the default locale if the argument is null or empty. |
Locale& getCachedLocale(const AtomicString& locale = nullAtom); |
- AnimationClock& animationClock() { return m_animationClock; } |
+ AnimationClock& animationClock(); |
AnimationTimeline& timeline() const { return *m_timeline; } |
CompositorPendingAnimations& compositorPendingAnimations() { return m_compositorPendingAnimations; } |
@@ -1354,7 +1354,6 @@ private: |
using LocaleIdentifierToLocaleMap = HashMap<AtomicString, OwnPtr<Locale>>; |
LocaleIdentifierToLocaleMap m_localeCache; |
- AnimationClock m_animationClock; |
PersistentWillBeMember<AnimationTimeline> m_timeline; |
CompositorPendingAnimations m_compositorPendingAnimations; |