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

Unified Diff: webkit/glue/webkitclient_impl.cc

Issue 7812036: Update base/timer.h code to pass through Location from call sites. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
Index: webkit/glue/webkitclient_impl.cc
diff --git a/webkit/glue/webkitclient_impl.cc b/webkit/glue/webkitclient_impl.cc
index 792a700af90ca32d4c04b1663eb5532577c9c369..f5958aad7e2e37e8c9ca10071cdad49ac949bc4c 100644
--- a/webkit/glue/webkitclient_impl.cc
+++ b/webkit/glue/webkitclient_impl.cc
@@ -528,7 +528,7 @@ void WebKitClientImpl::setSharedTimerFireInterval(double interval_seconds) {
shared_timer_.Stop();
shared_timer_.Start(base::TimeDelta::FromMicroseconds(interval), this,
- &WebKitClientImpl::DoTimeout);
+ &WebKitClientImpl::DoTimeout, FROM_HERE);
}
void WebKitClientImpl::stopSharedTimer() {

Powered by Google App Engine
This is Rietveld 408576698