Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: content/browser/loader/resource_dispatcher_host_impl.cc

Issue 11414299: Add content/browser/loader/ for resource loading related classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading
6 6
7 #include "content/browser/renderer_host/resource_dispatcher_host_impl.h" 7 #include "content/browser/loader/resource_dispatcher_host_impl.h"
8 8
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/bind_helpers.h" 13 #include "base/bind_helpers.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/debug/alias.h" 16 #include "base/debug/alias.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/memory/scoped_ptr.h" 18 #include "base/memory/scoped_ptr.h"
19 #include "base/message_loop.h" 19 #include "base/message_loop.h"
20 #include "base/metrics/histogram.h" 20 #include "base/metrics/histogram.h"
21 #include "base/shared_memory.h" 21 #include "base/shared_memory.h"
22 #include "base/stl_util.h" 22 #include "base/stl_util.h"
23 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" 23 #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
24 #include "content/browser/appcache/chrome_appcache_service.h" 24 #include "content/browser/appcache/chrome_appcache_service.h"
25 #include "content/browser/cert_store_impl.h" 25 #include "content/browser/cert_store_impl.h"
26 #include "content/browser/child_process_security_policy_impl.h" 26 #include "content/browser/child_process_security_policy_impl.h"
27 #include "content/browser/cross_site_request_manager.h" 27 #include "content/browser/cross_site_request_manager.h"
28 #include "content/browser/download/download_resource_handler.h" 28 #include "content/browser/download/download_resource_handler.h"
29 #include "content/browser/download/save_file_manager.h" 29 #include "content/browser/download/save_file_manager.h"
30 #include "content/browser/download/save_file_resource_handler.h" 30 #include "content/browser/download/save_file_resource_handler.h"
31 #include "content/browser/fileapi/chrome_blob_storage_context.h" 31 #include "content/browser/fileapi/chrome_blob_storage_context.h"
32 #include "content/browser/loader/async_resource_handler.h"
33 #include "content/browser/loader/buffered_resource_handler.h"
34 #include "content/browser/loader/cross_site_resource_handler.h"
35 #include "content/browser/loader/redirect_to_file_resource_handler.h"
36 #include "content/browser/loader/resource_message_filter.h"
37 #include "content/browser/loader/resource_request_info_impl.h"
38 #include "content/browser/loader/sync_resource_handler.h"
39 #include "content/browser/loader/throttling_resource_handler.h"
40 #include "content/browser/loader/transfer_navigation_resource_throttle.h"
32 #include "content/browser/plugin_service_impl.h" 41 #include "content/browser/plugin_service_impl.h"
33 #include "content/browser/renderer_host/async_resource_handler.h"
34 #include "content/browser/renderer_host/buffered_resource_handler.h"
35 #include "content/browser/renderer_host/cross_site_resource_handler.h"
36 #include "content/browser/renderer_host/redirect_to_file_resource_handler.h"
37 #include "content/browser/renderer_host/render_view_host_delegate.h" 42 #include "content/browser/renderer_host/render_view_host_delegate.h"
38 #include "content/browser/renderer_host/render_view_host_impl.h" 43 #include "content/browser/renderer_host/render_view_host_impl.h"
39 #include "content/browser/renderer_host/resource_message_filter.h"
40 #include "content/browser/renderer_host/resource_request_info_impl.h"
41 #include "content/browser/renderer_host/sync_resource_handler.h"
42 #include "content/browser/renderer_host/throttling_resource_handler.h"
43 #include "content/browser/renderer_host/transfer_navigation_resource_throttle.h"
44 #include "content/browser/resource_context_impl.h" 44 #include "content/browser/resource_context_impl.h"
45 #include "content/browser/worker_host/worker_service_impl.h" 45 #include "content/browser/worker_host/worker_service_impl.h"
46 #include "content/common/resource_messages.h" 46 #include "content/common/resource_messages.h"
47 #include "content/common/ssl_status_serialization.h" 47 #include "content/common/ssl_status_serialization.h"
48 #include "content/common/view_messages.h" 48 #include "content/common/view_messages.h"
49 #include "content/public/browser/browser_thread.h" 49 #include "content/public/browser/browser_thread.h"
50 #include "content/public/browser/content_browser_client.h" 50 #include "content/public/browser/content_browser_client.h"
51 #include "content/public/browser/download_manager.h" 51 #include "content/public/browser/download_manager.h"
52 #include "content/public/browser/global_request_id.h" 52 #include "content/public/browser/global_request_id.h"
53 #include "content/public/browser/notification_service.h" 53 #include "content/public/browser/notification_service.h"
(...skipping 1666 matching lines...) Expand 10 before | Expand all | Expand 10 after
1720 1720
1721 return i->second.get(); 1721 return i->second.get();
1722 } 1722 }
1723 1723
1724 ResourceLoader* ResourceDispatcherHostImpl::GetLoader(int child_id, 1724 ResourceLoader* ResourceDispatcherHostImpl::GetLoader(int child_id,
1725 int request_id) const { 1725 int request_id) const {
1726 return GetLoader(GlobalRequestID(child_id, request_id)); 1726 return GetLoader(GlobalRequestID(child_id, request_id));
1727 } 1727 }
1728 1728
1729 } // namespace content 1729 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.h ('k') | content/browser/loader/resource_dispatcher_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698