| 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_child_connection.h" | 5 #include "content/browser/mojo/mojo_child_connection.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/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
| 15 #include "content/public/browser/render_process_host.h" | 15 #include "content/public/browser/render_process_host.h" |
| 16 #include "content/public/browser/render_process_host_observer.h" | 16 #include "content/public/browser/render_process_host_observer.h" |
| 17 #include "content/public/common/mojo_shell_connection.h" | 17 #include "content/public/common/mojo_shell_connection.h" |
| 18 #include "ipc/ipc_sender.h" | 18 #include "ipc/ipc_sender.h" |
| 19 #include "mojo/converters/network/network_type_converters.h" | |
| 20 #include "mojo/edk/embedder/embedder.h" | 19 #include "mojo/edk/embedder/embedder.h" |
| 21 #include "mojo/public/cpp/system/message_pipe.h" | 20 #include "mojo/public/cpp/system/message_pipe.h" |
| 22 #include "mojo/shell/public/cpp/connector.h" | 21 #include "mojo/shell/public/cpp/connector.h" |
| 23 #include "mojo/shell/public/interfaces/shell.mojom.h" | 22 #include "mojo/shell/public/interfaces/shell.mojom.h" |
| 24 #include "mojo/shell/public/interfaces/shell_client.mojom.h" | 23 #include "mojo/shell/public/interfaces/shell_client.mojom.h" |
| 25 | 24 |
| 26 namespace content { | 25 namespace content { |
| 27 namespace { | 26 namespace { |
| 28 | 27 |
| 29 const char kMojoRenderProcessHostConnection[] = | 28 const char kMojoRenderProcessHostConnection[] = |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 } | 128 } |
| 130 | 129 |
| 131 mojo::Connection* GetMojoConnection(RenderProcessHost* render_process_host) { | 130 mojo::Connection* GetMojoConnection(RenderProcessHost* render_process_host) { |
| 132 RenderProcessHostConnection* connection = | 131 RenderProcessHostConnection* connection = |
| 133 static_cast<RenderProcessHostConnection*>( | 132 static_cast<RenderProcessHostConnection*>( |
| 134 render_process_host->GetUserData(kMojoRenderProcessHostConnection)); | 133 render_process_host->GetUserData(kMojoRenderProcessHostConnection)); |
| 135 return connection ? connection->get() : nullptr; | 134 return connection ? connection->get() : nullptr; |
| 136 } | 135 } |
| 137 | 136 |
| 138 } // namespace content | 137 } // namespace content |
| OLD | NEW |