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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1039763002: Cache Storage: Move files to content/*/cache_storage, rename classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN fix Created 5 years, 9 months 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
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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 24 matching lines...) Expand all
35 #include "base/tracked_objects.h" 35 #include "base/tracked_objects.h"
36 #include "cc/base/switches.h" 36 #include "cc/base/switches.h"
37 #include "content/browser/appcache/appcache_dispatcher_host.h" 37 #include "content/browser/appcache/appcache_dispatcher_host.h"
38 #include "content/browser/appcache/chrome_appcache_service.h" 38 #include "content/browser/appcache/chrome_appcache_service.h"
39 #include "content/browser/bad_message.h" 39 #include "content/browser/bad_message.h"
40 #include "content/browser/bluetooth/bluetooth_dispatcher_host.h" 40 #include "content/browser/bluetooth/bluetooth_dispatcher_host.h"
41 #include "content/browser/browser_child_process_host_impl.h" 41 #include "content/browser/browser_child_process_host_impl.h"
42 #include "content/browser/browser_main.h" 42 #include "content/browser/browser_main.h"
43 #include "content/browser/browser_main_loop.h" 43 #include "content/browser/browser_main_loop.h"
44 #include "content/browser/browser_plugin/browser_plugin_message_filter.h" 44 #include "content/browser/browser_plugin/browser_plugin_message_filter.h"
45 #include "content/browser/cache_storage/cache_storage_context_impl.h"
46 #include "content/browser/cache_storage/cache_storage_dispatcher_host.h"
45 #include "content/browser/child_process_security_policy_impl.h" 47 #include "content/browser/child_process_security_policy_impl.h"
46 #include "content/browser/device_sensors/device_light_message_filter.h" 48 #include "content/browser/device_sensors/device_light_message_filter.h"
47 #include "content/browser/device_sensors/device_motion_message_filter.h" 49 #include "content/browser/device_sensors/device_motion_message_filter.h"
48 #include "content/browser/device_sensors/device_orientation_message_filter.h" 50 #include "content/browser/device_sensors/device_orientation_message_filter.h"
49 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" 51 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
50 #include "content/browser/dom_storage/dom_storage_message_filter.h" 52 #include "content/browser/dom_storage/dom_storage_message_filter.h"
51 #include "content/browser/download/mhtml_generation_manager.h" 53 #include "content/browser/download/mhtml_generation_manager.h"
52 #include "content/browser/fileapi/chrome_blob_storage_context.h" 54 #include "content/browser/fileapi/chrome_blob_storage_context.h"
53 #include "content/browser/fileapi/fileapi_message_filter.h" 55 #include "content/browser/fileapi/fileapi_message_filter.h"
54 #include "content/browser/frame_host/render_frame_message_filter.h" 56 #include "content/browser/frame_host/render_frame_message_filter.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" 92 #include "content/browser/renderer_host/pepper/pepper_message_filter.h"
91 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h" 93 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h"
92 #include "content/browser/renderer_host/render_message_filter.h" 94 #include "content/browser/renderer_host/render_message_filter.h"
93 #include "content/browser/renderer_host/render_view_host_delegate.h" 95 #include "content/browser/renderer_host/render_view_host_delegate.h"
94 #include "content/browser/renderer_host/render_view_host_impl.h" 96 #include "content/browser/renderer_host/render_view_host_impl.h"
95 #include "content/browser/renderer_host/render_widget_helper.h" 97 #include "content/browser/renderer_host/render_widget_helper.h"
96 #include "content/browser/renderer_host/render_widget_host_impl.h" 98 #include "content/browser/renderer_host/render_widget_host_impl.h"
97 #include "content/browser/renderer_host/text_input_client_message_filter.h" 99 #include "content/browser/renderer_host/text_input_client_message_filter.h"
98 #include "content/browser/renderer_host/websocket_dispatcher_host.h" 100 #include "content/browser/renderer_host/websocket_dispatcher_host.h"
99 #include "content/browser/resolve_proxy_msg_helper.h" 101 #include "content/browser/resolve_proxy_msg_helper.h"
100 #include "content/browser/service_worker/cache_storage_context_impl.h"
101 #include "content/browser/service_worker/cache_storage_dispatcher_host.h"
102 #include "content/browser/service_worker/service_worker_context_wrapper.h" 102 #include "content/browser/service_worker/service_worker_context_wrapper.h"
103 #include "content/browser/service_worker/service_worker_dispatcher_host.h" 103 #include "content/browser/service_worker/service_worker_dispatcher_host.h"
104 #include "content/browser/shared_worker/shared_worker_message_filter.h" 104 #include "content/browser/shared_worker/shared_worker_message_filter.h"
105 #include "content/browser/shared_worker/worker_storage_partition.h" 105 #include "content/browser/shared_worker/worker_storage_partition.h"
106 #include "content/browser/speech/speech_recognition_dispatcher_host.h" 106 #include "content/browser/speech/speech_recognition_dispatcher_host.h"
107 #include "content/browser/storage_partition_impl.h" 107 #include "content/browser/storage_partition_impl.h"
108 #include "content/browser/streams/stream_context.h" 108 #include "content/browser/streams/stream_context.h"
109 #include "content/browser/tracing/trace_message_filter.h" 109 #include "content/browser/tracing/trace_message_filter.h"
110 #include "content/browser/webui/web_ui_controller_factory_registry.h" 110 #include "content/browser/webui/web_ui_controller_factory_registry.h"
111 #include "content/common/child_process_host_impl.h" 111 #include "content/common/child_process_host_impl.h"
(...skipping 2379 matching lines...) Expand 10 before | Expand all | Expand 10 after
2491 if (worker_ref_count_ == 0) 2491 if (worker_ref_count_ == 0)
2492 Cleanup(); 2492 Cleanup();
2493 } 2493 }
2494 2494
2495 void RenderProcessHostImpl::GetAudioOutputControllers( 2495 void RenderProcessHostImpl::GetAudioOutputControllers(
2496 const GetAudioOutputControllersCallback& callback) const { 2496 const GetAudioOutputControllersCallback& callback) const {
2497 audio_renderer_host()->GetOutputControllers(callback); 2497 audio_renderer_host()->GetOutputControllers(callback);
2498 } 2498 }
2499 2499
2500 } // namespace content 2500 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/cache_storage/cache_storage_scheduler_unittest.cc ('k') | content/browser/service_worker/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698