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

Unified Diff: Source/core/dom/Document.cpp

Issue 1316323002: Remove redundant DocumentLoadTiming references. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove redundant doc-time baselining Created 5 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 | « no previous file | Source/core/dom/IdleCallbackDeadline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index f2929f0eb0859debabec50951d240a1dfae0d4b2..8365c734cdfdb06253398e82a321b6134ec741c8 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -5123,7 +5123,7 @@ void Document::serviceScriptedAnimations(double monotonicAnimationStartTime)
ScriptedIdleTaskController& Document::ensureScriptedIdleTaskController()
{
if (!m_scriptedIdleTaskController)
- m_scriptedIdleTaskController = ScriptedIdleTaskController::create(this, loader()->timing());
+ m_scriptedIdleTaskController = ScriptedIdleTaskController::create(this);
return *m_scriptedIdleTaskController;
}
« no previous file with comments | « no previous file | Source/core/dom/IdleCallbackDeadline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698