| Index: chrome/browser/net/url_request_slow_download_job.h | 
| diff --git a/chrome/browser/net/url_request_slow_download_job.h b/chrome/browser/net/url_request_slow_download_job.h | 
| index 9d92338c999649e9c18a672c90bd0fbbc6e5a056..22da86a6a452be762703c6a28ce9e05919a4f036 100644 | 
| --- a/chrome/browser/net/url_request_slow_download_job.h | 
| +++ b/chrome/browser/net/url_request_slow_download_job.h | 
| @@ -16,7 +16,7 @@ | 
|  | 
| class URLRequestSlowDownloadJob : public URLRequestJob { | 
| public: | 
| -  explicit URLRequestSlowDownloadJob(URLRequest* request); | 
| +  explicit URLRequestSlowDownloadJob(net::URLRequest* request); | 
|  | 
| // Timer callback, used to check to see if we should finish our download and | 
| // send the second chunk. | 
| @@ -28,8 +28,8 @@ class URLRequestSlowDownloadJob : public URLRequestJob { | 
| virtual void GetResponseInfo(net::HttpResponseInfo* info); | 
| virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read); | 
|  | 
| -  static URLRequestJob* Factory(URLRequest* request, | 
| -                                const std::string& scheme); | 
| +  static net::URLRequestJob* Factory(net::URLRequest* request, | 
| +                                     const std::string& scheme); | 
|  | 
| // Test URLs. | 
| static const char kUnknownSizeUrl[]; | 
|  |