| Index: chrome/browser/net/url_request_slow_http_job.cc
|
| diff --git a/chrome/browser/net/url_request_slow_http_job.cc b/chrome/browser/net/url_request_slow_http_job.cc
|
| index a8205f02973af5b473a1110e5f8472a2ae655242..12065ab5c387e1490980514d238426184baea22c 100644
|
| --- a/chrome/browser/net/url_request_slow_http_job.cc
|
| +++ b/chrome/browser/net/url_request_slow_http_job.cc
|
| @@ -19,7 +19,7 @@ const int URLRequestSlowHTTPJob::kDelayMs = 1000;
|
| using base::TimeDelta;
|
|
|
| /* static */
|
| -URLRequestJob* URLRequestSlowHTTPJob::Factory(URLRequest* request,
|
| +URLRequestJob* URLRequestSlowHTTPJob::Factory(net::URLRequest* request,
|
| const std::string& scheme) {
|
| return new URLRequestSlowHTTPJob(request,
|
| GetOnDiskPath(base_path_, request, scheme));
|
| @@ -44,7 +44,7 @@ GURL URLRequestSlowHTTPJob::GetMockUrl(const FilePath& path) {
|
| return GURL(url);
|
| }
|
|
|
| -URLRequestSlowHTTPJob::URLRequestSlowHTTPJob(URLRequest* request,
|
| +URLRequestSlowHTTPJob::URLRequestSlowHTTPJob(net::URLRequest* request,
|
| const FilePath& file_path)
|
| : URLRequestMockHTTPJob(request, file_path) { }
|
|
|
|
|