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

Unified Diff: Source/core/html/HTMLSourceElement.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/html/HTMLSourceElement.cpp
diff --git a/Source/core/html/HTMLSourceElement.cpp b/Source/core/html/HTMLSourceElement.cpp
index 75daceb07a42bbfeda2bebab011f17558e2a7da9..08d4f7cc7621253cd0e37bd768e84b36e26808c7 100644
--- a/Source/core/html/HTMLSourceElement.cpp
+++ b/Source/core/html/HTMLSourceElement.cpp
@@ -101,7 +101,7 @@ void HTMLSourceElement::scheduleErrorEvent()
if (m_errorEventTimer.isActive())
return;
- m_errorEventTimer.startOneShot(0);
+ m_errorEventTimer.startOneShot(0, FROM_HERE);
}
void HTMLSourceElement::cancelPendingErrorEvent()

Powered by Google App Engine
This is Rietveld 408576698