| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_application_host.h" | 5 #include "content/browser/mojo/mojo_application_host.h" |
| 6 | 6 |
| 7 #include "content/common/mojo/mojo_messages.h" | 7 #include "content/common/mojo/mojo_messages.h" |
| 8 #include "content/public/browser/browser_thread.h" | 8 #include "content/public/browser/browser_thread.h" |
| 9 #include "ipc/ipc_sender.h" | 9 #include "ipc/ipc_sender.h" |
| 10 #include "mojo/edk/embedder/platform_channel_pair.h" | 10 #include "mojo/embedder/platform_channel_pair.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 base::PlatformFile PlatformFileFromScopedPlatformHandle( | 15 base::PlatformFile PlatformFileFromScopedPlatformHandle( |
| 16 mojo::embedder::ScopedPlatformHandle handle) { | 16 mojo::embedder::ScopedPlatformHandle handle) { |
| 17 #if defined(OS_POSIX) | 17 #if defined(OS_POSIX) |
| 18 return handle.release().fd; | 18 return handle.release().fd; |
| 19 #elif defined(OS_WIN) | 19 #elif defined(OS_WIN) |
| 20 return handle.release().handle; | 20 return handle.release().handle; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 did_activate_ = sender->Send(new MojoMsg_Activate( | 57 did_activate_ = sender->Send(new MojoMsg_Activate( |
| 58 IPC::GetFileHandleForProcess(client_file, process_handle, true))); | 58 IPC::GetFileHandleForProcess(client_file, process_handle, true))); |
| 59 return did_activate_; | 59 return did_activate_; |
| 60 } | 60 } |
| 61 | 61 |
| 62 void MojoApplicationHost::WillDestroySoon() { | 62 void MojoApplicationHost::WillDestroySoon() { |
| 63 channel_init_.WillDestroySoon(); | 63 channel_init_.WillDestroySoon(); |
| 64 } | 64 } |
| 65 | 65 |
| 66 } // namespace content | 66 } // namespace content |
| OLD | NEW |