| Index: chrome/browser/net/view_http_cache_job_factory.cc
|
| diff --git a/chrome/browser/net/view_http_cache_job_factory.cc b/chrome/browser/net/view_http_cache_job_factory.cc
|
| index 8e14a118de78e9a60877ef51602a5efd1a188e24..870387740cf8f45cb81fe0d7c1c8a25410d57b22 100644
|
| --- a/chrome/browser/net/view_http_cache_job_factory.cc
|
| +++ b/chrome/browser/net/view_http_cache_job_factory.cc
|
| @@ -18,7 +18,7 @@ namespace {
|
| // A job subclass that dumps an HTTP cache entry.
|
| class ViewHttpCacheJob : public net::URLRequestJob {
|
| public:
|
| - explicit ViewHttpCacheJob(URLRequest* request)
|
| + explicit ViewHttpCacheJob(net::URLRequest* request)
|
| : URLRequestJob(request), data_offset_(0), cancel_(false), busy_(false),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(
|
| callback_(this, &ViewHttpCacheJob::OnIOComplete)) {}
|
| @@ -124,6 +124,6 @@ bool ViewHttpCacheJobFactory::IsSupportedURL(const GURL& url) {
|
|
|
| // Static.
|
| URLRequestJob* ViewHttpCacheJobFactory::CreateJobForRequest(
|
| - URLRequest* request) {
|
| + net::URLRequest* request) {
|
| return new ViewHttpCacheJob(request);
|
| }
|
|
|