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

Unified Diff: webkit/glue/resource_fetcher.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/resource_fetcher.cc
diff --git a/webkit/glue/resource_fetcher.cc b/webkit/glue/resource_fetcher.cc
index 28885b4d8a41ae57f09822eae36bbd3a8e4c4ea8..4088eb5816a38e9475c8090b146d1cf450e88adb 100644
--- a/webkit/glue/resource_fetcher.cc
+++ b/webkit/glue/resource_fetcher.cc
@@ -128,7 +128,7 @@ ResourceFetcherWithTimeout::ResourceFetcherWithTimeout(
int timeout_secs, Callback* callback)
: ResourceFetcher(url, frame, target_type, callback) {
timeout_timer_.Start(TimeDelta::FromSeconds(timeout_secs), this,
- &ResourceFetcherWithTimeout::TimeoutFired);
+ &ResourceFetcherWithTimeout::TimeoutFired, FROM_HERE);
}
ResourceFetcherWithTimeout::~ResourceFetcherWithTimeout() {

Powered by Google App Engine
This is Rietveld 408576698