summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/blink/renderer/core/animation/document_timeline.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/animation/document_timeline.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/animation/document_timeline.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/blink/renderer/core/animation/document_timeline.cc b/chromium/third_party/blink/renderer/core/animation/document_timeline.cc
index 7c19e649a3b..b6b0268ecd9 100644
--- a/chromium/third_party/blink/renderer/core/animation/document_timeline.cc
+++ b/chromium/third_party/blink/renderer/core/animation/document_timeline.cc
@@ -56,7 +56,7 @@ bool CompareAnimations(const Member<Animation>& left,
// Returns the current animation time for a given |document|. This is
// the animation clock time capped to be at least this document's
// ZeroTime() such that the animation time is never negative when converted.
-base::TimeTicks CurrentAnimationTime(const Document* document) {
+base::TimeTicks CurrentAnimationTime(Document* document) {
base::TimeTicks animation_time = document->GetAnimationClock().CurrentTime();
base::TimeTicks document_zero_time = document->Timeline().ZeroTime();