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

Unified Diff: Source/core/loader/DocumentThreadableLoader.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
Index: Source/core/loader/DocumentThreadableLoader.cpp
diff --git a/Source/core/loader/DocumentThreadableLoader.cpp b/Source/core/loader/DocumentThreadableLoader.cpp
index d30ed937146ce61513ecb245e1a259c2452c8b4b..3e5bf8170b03f3f79ffe429cd2db733fd859f684 100644
--- a/Source/core/loader/DocumentThreadableLoader.cpp
+++ b/Source/core/loader/DocumentThreadableLoader.cpp
@@ -392,7 +392,7 @@ void DocumentThreadableLoader::loadRequest(const ResourceRequest& request)
}
if (m_options.timeoutMilliseconds > 0)
- m_timeoutTimer.startOneShot(m_options.timeoutMilliseconds / 1000.0);
+ m_timeoutTimer.startOneShot(m_options.timeoutMilliseconds / 1000.0, FROM_HERE);
FetchRequest newRequest(request, m_options.initiator, options);
ASSERT(!resource());

Powered by Google App Engine
This is Rietveld 408576698