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

Unified Diff: Source/core/animation/AnimationTimeline.cpp

Issue 916273002: Make DocumentLoader::timing return a reference (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 5 years, 10 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 | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationTimeline.cpp
diff --git a/Source/core/animation/AnimationTimeline.cpp b/Source/core/animation/AnimationTimeline.cpp
index 9e2a8009c8ec9528bcdda6615377708785793a9e..26fd46d0effcdb29f6e3f43ff0e2f33959b386b3 100644
--- a/Source/core/animation/AnimationTimeline.cpp
+++ b/Source/core/animation/AnimationTimeline.cpp
@@ -184,7 +184,7 @@ void AnimationTimeline::AnimationTimelineTiming::trace(Visitor* visitor)
double AnimationTimeline::zeroTime()
{
if (!m_zeroTimeInitialized && m_document && m_document->loader()) {
- m_zeroTime = m_document->loader()->timing()->referenceMonotonicTime();
+ m_zeroTime = m_document->loader()->timing().referenceMonotonicTime();
m_zeroTimeInitialized = true;
}
return m_zeroTime;
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698