| Index: chrome/browser/net/url_request_mock_http_job.cc
|
| diff --git a/chrome/browser/net/url_request_mock_http_job.cc b/chrome/browser/net/url_request_mock_http_job.cc
|
| index 22fe5bf7db5714538eb6c96a2d63bd4417fe6412..f9feb1a34499083594ab7f0a5e67ece17b87ac3e 100644
|
| --- a/chrome/browser/net/url_request_mock_http_job.cc
|
| +++ b/chrome/browser/net/url_request_mock_http_job.cc
|
| @@ -21,8 +21,8 @@ static const FilePath::CharType kMockHeaderFileSuffix[] =
|
| FilePath URLRequestMockHTTPJob::base_path_;
|
|
|
| /* static */
|
| -URLRequestJob* URLRequestMockHTTPJob::Factory(net::URLRequest* request,
|
| - const std::string& scheme) {
|
| +net::URLRequestJob* URLRequestMockHTTPJob::Factory(net::URLRequest* request,
|
| + const std::string& scheme) {
|
| return new URLRequestMockHTTPJob(request,
|
| GetOnDiskPath(base_path_, request, scheme));
|
| }
|
| @@ -82,7 +82,7 @@ bool URLRequestMockHTTPJob::IsRedirectResponse(GURL* location,
|
| int* http_status_code) {
|
| // Override the URLRequestFileJob implementation to invoke the default one
|
| // based on HttpResponseInfo.
|
| - return URLRequestJob::IsRedirectResponse(location, http_status_code);
|
| + return net::URLRequestJob::IsRedirectResponse(location, http_status_code);
|
| }
|
|
|
| // Private const version.
|
|
|