OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/dom_ui/chrome_url_data_manager_backend.h" | 5 #include "chrome/browser/webui/chrome_url_data_manager_backend.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/ref_counted_memory.h" | 10 #include "base/ref_counted_memory.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
12 #include "chrome/browser/appcache/view_appcache_internals_job_factory.h" | 12 #include "chrome/browser/appcache/view_appcache_internals_job_factory.h" |
13 #include "chrome/browser/browser_thread.h" | 13 #include "chrome/browser/browser_thread.h" |
14 #include "chrome/browser/dom_ui/shared_resources_data_source.h" | 14 #include "chrome/browser/dom_ui/shared_resources_data_source.h" |
15 #include "chrome/browser/net/chrome_url_request_context.h" | 15 #include "chrome/browser/net/chrome_url_request_context.h" |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 net::ERR_INVALID_URL)); | 384 net::ERR_INVALID_URL)); |
385 } | 385 } |
386 } | 386 } |
387 | 387 |
388 URLRequestChromeFileJob::URLRequestChromeFileJob(net::URLRequest* request, | 388 URLRequestChromeFileJob::URLRequestChromeFileJob(net::URLRequest* request, |
389 const FilePath& path) | 389 const FilePath& path) |
390 : net::URLRequestFileJob(request, path) { | 390 : net::URLRequestFileJob(request, path) { |
391 } | 391 } |
392 | 392 |
393 URLRequestChromeFileJob::~URLRequestChromeFileJob() {} | 393 URLRequestChromeFileJob::~URLRequestChromeFileJob() {} |
OLD | NEW |