| Index: chrome/browser/dom_ui/chrome_url_data_manager.cc
|
| diff --git a/chrome/browser/dom_ui/chrome_url_data_manager.cc b/chrome/browser/dom_ui/chrome_url_data_manager.cc
|
| index adfb744e40e77737be3bb7df7acfb25f36d3d3ef..42af812b9c770de075197229de88dab592483ad6 100644
|
| --- a/chrome/browser/dom_ui/chrome_url_data_manager.cc
|
| +++ b/chrome/browser/dom_ui/chrome_url_data_manager.cc
|
| @@ -83,7 +83,7 @@ class URLRequestChromeJob : public net::URLRequestJob {
|
| };
|
|
|
| // URLRequestChromeFileJob is a net::URLRequestJob that acts like a file:// URL
|
| -class URLRequestChromeFileJob : public URLRequestFileJob {
|
| +class URLRequestChromeFileJob : public net::URLRequestFileJob {
|
| public:
|
| URLRequestChromeFileJob(net::URLRequest* request, const FilePath& path);
|
|
|
| @@ -434,7 +434,7 @@ void URLRequestChromeJob::StartAsync() {
|
|
|
| URLRequestChromeFileJob::URLRequestChromeFileJob(net::URLRequest* request,
|
| const FilePath& path)
|
| - : URLRequestFileJob(request, path) {
|
| + : net::URLRequestFileJob(request, path) {
|
| }
|
|
|
| URLRequestChromeFileJob::~URLRequestChromeFileJob() { }
|
|
|