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

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

Issue 1934223004: [BlobStorage] Moving all blob files to applicable directories (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "base/tracked_objects.h" 43 #include "base/tracked_objects.h"
44 #include "build/build_config.h" 44 #include "build/build_config.h"
45 #include "cc/base/switches.h" 45 #include "cc/base/switches.h"
46 #include "components/scheduler/common/scheduler_switches.h" 46 #include "components/scheduler/common/scheduler_switches.h"
47 #include "components/tracing/tracing_switches.h" 47 #include "components/tracing/tracing_switches.h"
48 #include "content/browser/appcache/appcache_dispatcher_host.h" 48 #include "content/browser/appcache/appcache_dispatcher_host.h"
49 #include "content/browser/appcache/chrome_appcache_service.h" 49 #include "content/browser/appcache/chrome_appcache_service.h"
50 #include "content/browser/background_sync/background_sync_service_impl.h" 50 #include "content/browser/background_sync/background_sync_service_impl.h"
51 #include "content/browser/bad_message.h" 51 #include "content/browser/bad_message.h"
52 #include "content/browser/blob_storage/blob_dispatcher_host.h" 52 #include "content/browser/blob_storage/blob_dispatcher_host.h"
53 #include "content/browser/blob_storage/chrome_blob_storage_context.h"
53 #include "content/browser/bluetooth/bluetooth_dispatcher_host.h" 54 #include "content/browser/bluetooth/bluetooth_dispatcher_host.h"
54 #include "content/browser/browser_child_process_host_impl.h" 55 #include "content/browser/browser_child_process_host_impl.h"
55 #include "content/browser/browser_main.h" 56 #include "content/browser/browser_main.h"
56 #include "content/browser/browser_main_loop.h" 57 #include "content/browser/browser_main_loop.h"
57 #include "content/browser/browser_plugin/browser_plugin_message_filter.h" 58 #include "content/browser/browser_plugin/browser_plugin_message_filter.h"
58 #include "content/browser/cache_storage/cache_storage_context_impl.h" 59 #include "content/browser/cache_storage/cache_storage_context_impl.h"
59 #include "content/browser/cache_storage/cache_storage_dispatcher_host.h" 60 #include "content/browser/cache_storage/cache_storage_dispatcher_host.h"
60 #include "content/browser/child_process_security_policy_impl.h" 61 #include "content/browser/child_process_security_policy_impl.h"
61 #include "content/browser/device_sensors/device_light_message_filter.h" 62 #include "content/browser/device_sensors/device_light_message_filter.h"
62 #include "content/browser/device_sensors/device_motion_message_filter.h" 63 #include "content/browser/device_sensors/device_motion_message_filter.h"
63 #include "content/browser/device_sensors/device_orientation_absolute_message_fil ter.h" 64 #include "content/browser/device_sensors/device_orientation_absolute_message_fil ter.h"
64 #include "content/browser/device_sensors/device_orientation_message_filter.h" 65 #include "content/browser/device_sensors/device_orientation_message_filter.h"
65 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" 66 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
66 #include "content/browser/dom_storage/dom_storage_message_filter.h" 67 #include "content/browser/dom_storage/dom_storage_message_filter.h"
67 #include "content/browser/fileapi/chrome_blob_storage_context.h"
68 #include "content/browser/fileapi/fileapi_message_filter.h" 68 #include "content/browser/fileapi/fileapi_message_filter.h"
69 #include "content/browser/frame_host/render_frame_message_filter.h" 69 #include "content/browser/frame_host/render_frame_message_filter.h"
70 #include "content/browser/geofencing/geofencing_dispatcher_host.h" 70 #include "content/browser/geofencing/geofencing_dispatcher_host.h"
71 #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h" 71 #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h"
72 #include "content/browser/gpu/compositor_util.h" 72 #include "content/browser/gpu/compositor_util.h"
73 #include "content/browser/gpu/gpu_data_manager_impl.h" 73 #include "content/browser/gpu/gpu_data_manager_impl.h"
74 #include "content/browser/gpu/gpu_process_host.h" 74 #include "content/browser/gpu/gpu_process_host.h"
75 #include "content/browser/gpu/shader_disk_cache.h" 75 #include "content/browser/gpu/shader_disk_cache.h"
76 #include "content/browser/histogram_message_filter.h" 76 #include "content/browser/histogram_message_filter.h"
77 #include "content/browser/indexed_db/indexed_db_context_impl.h" 77 #include "content/browser/indexed_db/indexed_db_context_impl.h"
(...skipping 2684 matching lines...) Expand 10 before | Expand all | Expand 10 after
2762 2762
2763 // Skip widgets in other processes. 2763 // Skip widgets in other processes.
2764 if (rvh->GetProcess()->GetID() != GetID()) 2764 if (rvh->GetProcess()->GetID() != GetID())
2765 continue; 2765 continue;
2766 2766
2767 rvh->OnWebkitPreferencesChanged(); 2767 rvh->OnWebkitPreferencesChanged();
2768 } 2768 }
2769 } 2769 }
2770 2770
2771 } // namespace content 2771 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698