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

Unified Diff: content/browser/net/url_request_slow_http_job.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: content/browser/net/url_request_slow_http_job.cc
diff --git a/content/browser/net/url_request_slow_http_job.cc b/content/browser/net/url_request_slow_http_job.cc
index 398298f200d433077fd832d561223d3fa037c269..c53a153e6f8e0c16f8a0d969ed10f67cbdaf10f3 100644
--- a/content/browser/net/url_request_slow_http_job.cc
+++ b/content/browser/net/url_request_slow_http_job.cc
@@ -51,7 +51,7 @@ URLRequestSlowHTTPJob::URLRequestSlowHTTPJob(net::URLRequest* request,
void URLRequestSlowHTTPJob::Start() {
delay_timer_.Start(TimeDelta::FromMilliseconds(kDelayMs), this,
- &URLRequestSlowHTTPJob::RealStart);
+ &URLRequestSlowHTTPJob::RealStart, FROM_HERE);
}
URLRequestSlowHTTPJob::~URLRequestSlowHTTPJob() {

Powered by Google App Engine
This is Rietveld 408576698