diff options
Diffstat (limited to 'content/browser/net/url_request_slow_http_job.cc')
-rw-r--r-- | content/browser/net/url_request_slow_http_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/net/url_request_slow_http_job.cc b/content/browser/net/url_request_slow_http_job.cc index 398298f..3f1a6b6 100644 --- a/content/browser/net/url_request_slow_http_job.cc +++ b/content/browser/net/url_request_slow_http_job.cc @@ -50,7 +50,7 @@ URLRequestSlowHTTPJob::URLRequestSlowHTTPJob(net::URLRequest* request, : URLRequestMockHTTPJob(request, file_path) { } void URLRequestSlowHTTPJob::Start() { - delay_timer_.Start(TimeDelta::FromMilliseconds(kDelayMs), this, + delay_timer_.Start(FROM_HERE, TimeDelta::FromMilliseconds(kDelayMs), this, &URLRequestSlowHTTPJob::RealStart); } |