OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "content/browser/mojo/mojo_shell_client_host.h" | 5 #include "content/browser/mojo/mojo_shell_client_host.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
12 #include "base/thread_task_runner_handle.h" | 12 #include "base/thread_task_runner_handle.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "content/common/mojo/mojo_messages.h" | 14 #include "content/common/mojo/mojo_messages.h" |
15 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
16 #include "content/public/browser/render_process_host.h" | 16 #include "content/public/browser/render_process_host.h" |
17 #include "content/public/browser/render_process_host_observer.h" | 17 #include "content/public/browser/render_process_host_observer.h" |
18 #include "content/public/common/mojo_shell_connection.h" | 18 #include "content/public/common/mojo_shell_connection.h" |
19 #include "ipc/ipc_sender.h" | 19 #include "ipc/ipc_sender.h" |
20 #include "mojo/converters/network/network_type_converters.h" | 20 #include "mojo/converters/network/network_type_converters.h" |
21 #include "mojo/edk/embedder/embedder.h" | 21 #include "mojo/edk/embedder/embedder.h" |
22 #include "mojo/edk/embedder/platform_channel_pair.h" | 22 #include "mojo/edk/embedder/platform_channel_pair.h" |
23 #include "mojo/edk/embedder/scoped_platform_handle.h" | 23 #include "mojo/edk/embedder/scoped_platform_handle.h" |
24 #include "mojo/shell/public/cpp/shell.h" | 24 #include "mojo/shell/public/cpp/connector.h" |
25 #include "mojo/shell/public/interfaces/application_manager.mojom.h" | 25 #include "mojo/shell/public/interfaces/application_manager.mojom.h" |
26 | 26 |
27 namespace content { | 27 namespace content { |
28 namespace { | 28 namespace { |
29 | 29 |
30 const char kMojoShellInstanceURL[] = "mojo_shell_instance_url"; | 30 const char kMojoShellInstanceURL[] = "mojo_shell_instance_url"; |
31 const char kMojoPlatformFile[] = "mojo_platform_file"; | 31 const char kMojoPlatformFile[] = "mojo_platform_file"; |
32 | 32 |
33 base::PlatformFile PlatformFileFromScopedPlatformHandle( | 33 base::PlatformFile PlatformFileFromScopedPlatformHandle( |
34 mojo::edk::ScopedPlatformHandle handle) { | 34 mojo::edk::ScopedPlatformHandle handle) { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 | 126 |
127 // Send the other end to the child via Chrome IPC. | 127 // Send the other end to the child via Chrome IPC. |
128 base::PlatformFile client_file = PlatformFileFromScopedPlatformHandle( | 128 base::PlatformFile client_file = PlatformFileFromScopedPlatformHandle( |
129 platform_channel_pair.PassClientHandle()); | 129 platform_channel_pair.PassClientHandle()); |
130 SetMojoPlatformFile(render_process_host, client_file); | 130 SetMojoPlatformFile(render_process_host, client_file); |
131 | 131 |
132 mojo::ScopedMessagePipeHandle request_pipe = | 132 mojo::ScopedMessagePipeHandle request_pipe = |
133 mojo::edk::CreateMessagePipe(std::move(parent_pipe)); | 133 mojo::edk::CreateMessagePipe(std::move(parent_pipe)); |
134 | 134 |
135 mojo::shell::mojom::ApplicationManagerPtr application_manager; | 135 mojo::shell::mojom::ApplicationManagerPtr application_manager; |
136 MojoShellConnection::Get()->GetShell()->ConnectToInterface( | 136 MojoShellConnection::Get()->GetConnector()->ConnectToInterface( |
137 "mojo:shell", &application_manager); | 137 "mojo:shell", &application_manager); |
138 | 138 |
139 // The content of the URL/qualifier we pass is actually meaningless, it's only | 139 // The content of the URL/qualifier we pass is actually meaningless, it's only |
140 // important that they're unique per process. | 140 // important that they're unique per process. |
141 // TODO(beng): We need to specify a restrictive CapabilityFilter here that | 141 // TODO(beng): We need to specify a restrictive CapabilityFilter here that |
142 // matches the needs of the target process. Figure out where that | 142 // matches the needs of the target process. Figure out where that |
143 // specification is best determined (not here, this is a common | 143 // specification is best determined (not here, this is a common |
144 // chokepoint for all process types) and how to wire it through. | 144 // chokepoint for all process types) and how to wire it through. |
145 // http://crbug.com/555393 | 145 // http://crbug.com/555393 |
146 std::string url = | 146 std::string url = |
(...skipping 27 matching lines...) Expand all Loading... |
174 RenderProcessHost* render_process_host) { | 174 RenderProcessHost* render_process_host) { |
175 InstanceShellHandle* client_file = static_cast<InstanceShellHandle*>( | 175 InstanceShellHandle* client_file = static_cast<InstanceShellHandle*>( |
176 render_process_host->GetUserData(kMojoPlatformFile)); | 176 render_process_host->GetUserData(kMojoPlatformFile)); |
177 if (!client_file) | 177 if (!client_file) |
178 return; | 178 return; |
179 render_process_host->Send(new MojoMsg_BindExternalMojoShellHandle( | 179 render_process_host->Send(new MojoMsg_BindExternalMojoShellHandle( |
180 IPC::GetFileHandleForProcess(client_file->get(), process_handle, true))); | 180 IPC::GetFileHandleForProcess(client_file->get(), process_handle, true))); |
181 } | 181 } |
182 | 182 |
183 } // namespace content | 183 } // namespace content |
OLD | NEW |