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/embedder/platform_channel_pair.h" | 10 #include "mojo/embedder/platform_channel_pair.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 } // namespace | 24 } // namespace |
25 | 25 |
26 MojoApplicationHost::MojoApplicationHost() : did_activate_(false) { | 26 MojoApplicationHost::MojoApplicationHost() : did_activate_(false) { |
27 } | 27 } |
28 | 28 |
29 MojoApplicationHost::~MojoApplicationHost() { | 29 MojoApplicationHost::~MojoApplicationHost() { |
30 } | 30 } |
31 | 31 |
32 bool MojoApplicationHost::Init() { | 32 bool MojoApplicationHost::Init() { |
33 DCHECK(!child_service_provider_.get()) << "Already initialized!"; | 33 DCHECK(!client_handle_.is_valid()) << "Already initialized!"; |
34 | 34 |
35 mojo::embedder::PlatformChannelPair channel_pair; | 35 mojo::embedder::PlatformChannelPair channel_pair; |
36 | 36 |
37 mojo::ScopedMessagePipeHandle message_pipe = channel_init_.Init( | 37 mojo::ScopedMessagePipeHandle message_pipe = channel_init_.Init( |
38 PlatformFileFromScopedPlatformHandle(channel_pair.PassServerHandle()), | 38 PlatformFileFromScopedPlatformHandle(channel_pair.PassServerHandle()), |
39 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); | 39 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); |
40 if (!message_pipe.is_valid()) | 40 if (!message_pipe.is_valid()) |
41 return false; | 41 return false; |
42 | 42 |
43 // Forward this to the client once we know its process handle. | 43 // Forward this to the client once we know its process handle. |
44 client_handle_ = channel_pair.PassClientHandle(); | 44 client_handle_ = channel_pair.PassClientHandle(); |
45 | 45 |
46 child_service_provider_.reset( | 46 service_registry_.BindRemoteServiceProvider(message_pipe.Pass()); |
47 BindToPipe(new ServiceProviderImpl(), message_pipe.Pass())); | |
48 return true; | 47 return true; |
49 } | 48 } |
50 | 49 |
51 bool MojoApplicationHost::Activate(IPC::Sender* sender, | 50 bool MojoApplicationHost::Activate(IPC::Sender* sender, |
52 base::ProcessHandle process_handle) { | 51 base::ProcessHandle process_handle) { |
53 DCHECK(!did_activate_); | 52 DCHECK(!did_activate_); |
54 DCHECK(client_handle_.is_valid()); | 53 DCHECK(client_handle_.is_valid()); |
55 | 54 |
56 base::PlatformFile client_file = | 55 base::PlatformFile client_file = |
57 PlatformFileFromScopedPlatformHandle(client_handle_.Pass()); | 56 PlatformFileFromScopedPlatformHandle(client_handle_.Pass()); |
58 did_activate_ = sender->Send(new MojoMsg_Activate( | 57 did_activate_ = sender->Send(new MojoMsg_Activate( |
59 IPC::GetFileHandleForProcess(client_file, process_handle, true))); | 58 IPC::GetFileHandleForProcess(client_file, process_handle, true))); |
60 return did_activate_; | 59 return did_activate_; |
61 } | 60 } |
62 | 61 |
63 void MojoApplicationHost::ServiceProviderImpl::ConnectToService( | |
64 const mojo::String& service_url, | |
65 const mojo::String& service_name, | |
66 mojo::ScopedMessagePipeHandle handle, | |
67 const mojo::String& requestor_url) { | |
68 // TODO(darin): Provide something meaningful here. | |
69 } | |
70 | |
71 } // namespace content | 62 } // namespace content |
OLD | NEW |