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

Unified Diff: Source/core/fetch/FontResource.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/fetch/FontResource.cpp
diff --git a/Source/core/fetch/FontResource.cpp b/Source/core/fetch/FontResource.cpp
index 18ed44eb308ba80dda674e111c677f775141af2b..c7cc0d5b19ae776132a6b78be9627e5f06ccfe26 100644
--- a/Source/core/fetch/FontResource.cpp
+++ b/Source/core/fetch/FontResource.cpp
@@ -78,7 +78,7 @@ void FontResource::beginLoadIfNeeded(ResourceFetcher* dl)
if (!m_loadInitiated) {
m_loadInitiated = true;
Resource::load(dl, m_options);
- m_fontLoadWaitLimitTimer.startOneShot(fontLoadWaitLimitSec);
+ m_fontLoadWaitLimitTimer.startOneShot(fontLoadWaitLimitSec, FROM_HERE);
ResourceClientWalker<FontResourceClient> walker(m_clients);
while (FontResourceClient* client = walker.next())

Powered by Google App Engine
This is Rietveld 408576698