OLD | NEW |
---|---|
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 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1325 | 1325 |
1326 AddUIThreadInterface(registry.get(), base::Bind(&FieldTrialRecorder::Create)); | 1326 AddUIThreadInterface(registry.get(), base::Bind(&FieldTrialRecorder::Create)); |
1327 | 1327 |
1328 AddUIThreadInterface( | 1328 AddUIThreadInterface( |
1329 registry.get(), | 1329 registry.get(), |
1330 base::Bind( | 1330 base::Bind( |
1331 &memory_instrumentation::CoordinatorImpl::BindCoordinatorRequest, | 1331 &memory_instrumentation::CoordinatorImpl::BindCoordinatorRequest, |
1332 base::Unretained( | 1332 base::Unretained( |
1333 memory_instrumentation::CoordinatorImpl::GetInstance()))); | 1333 memory_instrumentation::CoordinatorImpl::GetInstance()))); |
1334 | 1334 |
1335 GetContentClient()->browser()->ExposeInterfacesToRenderer(registry.get(), | 1335 associated_registry_.reset(new AssociatedInterfaceRegistryImpl()); |
1336 this); | 1336 GetContentClient()->browser()->ExposeInterfacesToRenderer( |
1337 registry.get(), associated_registry_.get(), this); | |
1337 | 1338 |
1338 ServiceManagerConnection* service_manager_connection = | 1339 ServiceManagerConnection* service_manager_connection = |
1339 BrowserContext::GetServiceManagerConnectionFor(browser_context_); | 1340 BrowserContext::GetServiceManagerConnectionFor(browser_context_); |
1340 std::unique_ptr<ConnectionFilterImpl> connection_filter( | 1341 std::unique_ptr<ConnectionFilterImpl> connection_filter( |
1341 new ConnectionFilterImpl(child_connection_->child_identity(), | 1342 new ConnectionFilterImpl(child_connection_->child_identity(), |
1342 std::move(registry))); | 1343 std::move(registry))); |
1343 connection_filter_controller_ = connection_filter->controller(); | 1344 connection_filter_controller_ = connection_filter->controller(); |
1344 connection_filter_id_ = service_manager_connection->AddConnectionFilter( | 1345 connection_filter_id_ = service_manager_connection->AddConnectionFilter( |
1345 std::move(connection_filter)); | 1346 std::move(connection_filter)); |
1346 } | 1347 } |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2081 | 2082 |
2082 void RenderProcessHostImpl::OnAssociatedInterfaceRequest( | 2083 void RenderProcessHostImpl::OnAssociatedInterfaceRequest( |
2083 const std::string& interface_name, | 2084 const std::string& interface_name, |
2084 mojo::ScopedInterfaceEndpointHandle handle) { | 2085 mojo::ScopedInterfaceEndpointHandle handle) { |
2085 if (interface_name == mojom::RouteProvider::Name_) { | 2086 if (interface_name == mojom::RouteProvider::Name_) { |
2086 if (route_provider_binding_.is_bound()) | 2087 if (route_provider_binding_.is_bound()) |
2087 return; | 2088 return; |
2088 mojom::RouteProviderAssociatedRequest request; | 2089 mojom::RouteProviderAssociatedRequest request; |
2089 request.Bind(std::move(handle)); | 2090 request.Bind(std::move(handle)); |
2090 route_provider_binding_.Bind(std::move(request)); | 2091 route_provider_binding_.Bind(std::move(request)); |
2092 } else if (associated_registry_->CanBindRequest(interface_name)) { | |
Ken Rockot(use gerrit already)
2017/04/11 22:20:36
Optional nit: You could add a binder for RouteProv
nigeltao1
2017/04/20 05:12:36
Done, by adding some new code further up in this f
| |
2093 associated_registry_->BindRequest(interface_name, std::move(handle)); | |
2091 } else { | 2094 } else { |
2092 LOG(ERROR) << "Request for unknown Channel-associated interface: " | 2095 LOG(ERROR) << "Request for unknown Channel-associated interface: " |
2093 << interface_name; | 2096 << interface_name; |
2094 } | 2097 } |
2095 } | 2098 } |
2096 | 2099 |
2097 void RenderProcessHostImpl::OnChannelConnected(int32_t peer_pid) { | 2100 void RenderProcessHostImpl::OnChannelConnected(int32_t peer_pid) { |
2098 channel_connected_ = true; | 2101 channel_connected_ = true; |
2099 if (IsReady()) { | 2102 if (IsReady()) { |
2100 DCHECK(!sent_render_process_ready_); | 2103 DCHECK(!sent_render_process_ready_); |
(...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3071 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 3074 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
3072 | 3075 |
3073 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. | 3076 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. |
3074 // Capture the error message in a crash key value. | 3077 // Capture the error message in a crash key value. |
3075 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); | 3078 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); |
3076 bad_message::ReceivedBadMessage(render_process_id, | 3079 bad_message::ReceivedBadMessage(render_process_id, |
3077 bad_message::RPH_MOJO_PROCESS_ERROR); | 3080 bad_message::RPH_MOJO_PROCESS_ERROR); |
3078 } | 3081 } |
3079 | 3082 |
3080 } // namespace content | 3083 } // namespace content |
OLD | NEW |