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

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

Issue 2004643002: Implement BroadcastChannel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and slightly improved tests Created 4 years, 6 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 27 matching lines...) Expand all
38 #include "base/supports_user_data.h" 38 #include "base/supports_user_data.h"
39 #include "base/sys_info.h" 39 #include "base/sys_info.h"
40 #include "base/threading/thread.h" 40 #include "base/threading/thread.h"
41 #include "base/threading/thread_restrictions.h" 41 #include "base/threading/thread_restrictions.h"
42 #include "base/trace_event/trace_event.h" 42 #include "base/trace_event/trace_event.h"
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 "components/webmessaging/broadcast_channel_service.h"
48 #include "content/browser/appcache/appcache_dispatcher_host.h" 49 #include "content/browser/appcache/appcache_dispatcher_host.h"
49 #include "content/browser/appcache/chrome_appcache_service.h" 50 #include "content/browser/appcache/chrome_appcache_service.h"
50 #include "content/browser/background_sync/background_sync_service_impl.h" 51 #include "content/browser/background_sync/background_sync_service_impl.h"
51 #include "content/browser/bad_message.h" 52 #include "content/browser/bad_message.h"
52 #include "content/browser/blob_storage/blob_dispatcher_host.h" 53 #include "content/browser/blob_storage/blob_dispatcher_host.h"
53 #include "content/browser/blob_storage/chrome_blob_storage_context.h" 54 #include "content/browser/blob_storage/chrome_blob_storage_context.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"
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 base::Bind(&ImageCaptureImpl::Create)); 1074 base::Bind(&ImageCaptureImpl::Create));
1074 1075
1075 mojo_application_host_->service_registry()->AddService(base::Bind( 1076 mojo_application_host_->service_registry()->AddService(base::Bind(
1076 &BackgroundSyncContext::CreateService, 1077 &BackgroundSyncContext::CreateService,
1077 base::Unretained(storage_partition_impl_->GetBackgroundSyncContext()))); 1078 base::Unretained(storage_partition_impl_->GetBackgroundSyncContext())));
1078 1079
1079 mojo_application_host_->service_registry()->AddService( 1080 mojo_application_host_->service_registry()->AddService(
1080 base::Bind(&RenderProcessHostImpl::CreateStoragePartitionService, 1081 base::Bind(&RenderProcessHostImpl::CreateStoragePartitionService,
1081 base::Unretained(this))); 1082 base::Unretained(this)));
1082 1083
1084 mojo_application_host_->service_registry()->AddService(base::Bind(
1085 &webmessaging::BroadcastChannelService::Connect,
1086 base::Unretained(storage_partition_impl_->GetBroadcastChannelService())));
1087
1083 #if defined(OS_ANDROID) 1088 #if defined(OS_ANDROID)
1084 ServiceRegistrarAndroid::RegisterProcessHostServices( 1089 ServiceRegistrarAndroid::RegisterProcessHostServices(
1085 mojo_application_host_->service_registry_android()); 1090 mojo_application_host_->service_registry_android());
1086 #endif 1091 #endif
1087 1092
1088 GetContentClient()->browser()->RegisterRenderProcessMojoServices( 1093 GetContentClient()->browser()->RegisterRenderProcessMojoServices(
1089 mojo_application_host_->service_registry()); 1094 mojo_application_host_->service_registry());
1090 } 1095 }
1091 1096
1092 void RenderProcessHostImpl::CreateStoragePartitionService( 1097 void RenderProcessHostImpl::CreateStoragePartitionService(
(...skipping 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after
2780 2785
2781 // Skip widgets in other processes. 2786 // Skip widgets in other processes.
2782 if (rvh->GetProcess()->GetID() != GetID()) 2787 if (rvh->GetProcess()->GetID() != GetID())
2783 continue; 2788 continue;
2784 2789
2785 rvh->OnWebkitPreferencesChanged(); 2790 rvh->OnWebkitPreferencesChanged();
2786 } 2791 }
2787 } 2792 }
2788 2793
2789 } // namespace content 2794 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698