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

Unified Diff: content/child/child_thread_impl.cc

Issue 2310563002: Adds routed interface support between RenderFrameHost and RenderFrame (Closed)
Patch Set: nit Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/child_thread_impl.h ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_thread_impl.cc
diff --git a/content/child/child_thread_impl.cc b/content/child/child_thread_impl.cc
index 29454b64e1ab12feba98ce80e1d88bb66093b504..236d222b8cf64c061414f0b0ea1d56d391b827ec 100644
--- a/content/child/child_thread_impl.cc
+++ b/content/child/child_thread_impl.cc
@@ -378,7 +378,10 @@ bool ChildThreadImpl::ChildThreadMessageRouter::RouteMessage(
}
ChildThreadImpl::ChildThreadImpl()
- : router_(this),
+ : route_provider_binding_(this),
+ associated_interface_provider_bindings_(
+ mojo::BindingSetDispatchMode::WITH_CONTEXT),
+ router_(this),
channel_connected_factory_(
new base::WeakPtrFactory<ChildThreadImpl>(this)),
weak_factory_(this) {
@@ -386,7 +389,10 @@ ChildThreadImpl::ChildThreadImpl()
}
ChildThreadImpl::ChildThreadImpl(const Options& options)
- : router_(this),
+ : route_provider_binding_(this),
+ associated_interface_provider_bindings_(
+ mojo::BindingSetDispatchMode::WITH_CONTEXT),
+ router_(this),
browser_process_io_runner_(options.browser_process_io_runner),
channel_connected_factory_(
new base::WeakPtrFactory<ChildThreadImpl>(this)),
@@ -566,6 +572,10 @@ void ChildThreadImpl::Init(const Options& options) {
ConnectChannel(options.use_mojo_channel);
+ channel_->AddAssociatedInterface(
+ base::Bind(&ChildThreadImpl::OnRouteProviderRequest,
+ base::Unretained(this)));
+
// This must always be done after ConnectChannel, because ConnectChannel() may
// add a ConnectionFilter to the connection.
if (options.auto_start_mojo_shell_connection && mojo_shell_connection_)
@@ -697,6 +707,14 @@ IPC::MessageRouter* ChildThreadImpl::GetRouter() {
return &router_;
}
+mojom::RouteProvider* ChildThreadImpl::GetRemoteRouteProvider() {
+ if (!remote_route_provider_) {
+ DCHECK(channel_);
+ channel_->GetRemoteAssociatedInterface(&remote_route_provider_);
+ }
+ return remote_route_provider_.get();
+}
+
std::unique_ptr<base::SharedMemory> ChildThreadImpl::AllocateSharedMemory(
size_t buf_size) {
DCHECK(message_loop_->task_runner()->BelongsToCurrentThread());
@@ -849,6 +867,29 @@ void ChildThreadImpl::EnsureConnected() {
base::Process::Current().Terminate(0, false);
}
+void ChildThreadImpl::OnRouteProviderRequest(
+ mojom::RouteProviderAssociatedRequest request) {
+ DCHECK(!route_provider_binding_.is_bound());
+ route_provider_binding_.Bind(std::move(request));
+}
+
+void ChildThreadImpl::GetRoute(
+ int32_t routing_id,
+ mojom::AssociatedInterfaceProviderAssociatedRequest request) {
+ associated_interface_provider_bindings_.AddBinding(
+ this, std::move(request),
+ reinterpret_cast<void*>(static_cast<uintptr_t>(routing_id)));
+}
+
+void ChildThreadImpl::GetAssociatedInterface(
+ const std::string& name,
+ mojom::AssociatedInterfaceAssociatedRequest request) {
+ int32_t routing_id = static_cast<int32_t>(reinterpret_cast<uintptr_t>(
+ associated_interface_provider_bindings_.dispatch_context()));
+ router_.GetRoute(routing_id)->OnAssociatedInterfaceRequest(
+ name, request.PassHandle());
+}
+
bool ChildThreadImpl::IsInBrowserProcess() const {
return static_cast<bool>(browser_process_io_runner_);
}
« no previous file with comments | « content/child/child_thread_impl.h ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698