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

Unified Diff: Source/core/html/HTMLFormElement.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/HTMLFormElement.cpp
diff --git a/Source/core/html/HTMLFormElement.cpp b/Source/core/html/HTMLFormElement.cpp
index 132049010ae4a70ccdff304ec3cb43f1995647fa..f17e101bcd4a1e6b71c392b7065fe4e7511da127 100644
--- a/Source/core/html/HTMLFormElement.cpp
+++ b/Source/core/html/HTMLFormElement.cpp
@@ -494,7 +494,7 @@ void HTMLFormElement::finishRequestAutocomplete(AutocompleteResult result)
// Dispatch events later as this API is meant to work asynchronously in all situations and implementations.
if (!m_requestAutocompleteTimer.isActive())
- m_requestAutocompleteTimer.startOneShot(0);
+ m_requestAutocompleteTimer.startOneShot(0, FROM_HERE);
}
void HTMLFormElement::requestAutocompleteTimerFired(Timer<HTMLFormElement>*)

Powered by Google App Engine
This is Rietveld 408576698