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

Unified Diff: content/browser/mojo/mojo_application_host.cc

Issue 236813002: Move Mojo channel initialization closer to IPC::Channel setup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more missing deps Created 6 years, 8 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
Index: content/browser/mojo/mojo_application_host.cc
diff --git a/content/browser/mojo/mojo_application_host.cc b/content/browser/mojo/mojo_application_host.cc
new file mode 100644
index 0000000000000000000000000000000000000000..48d343a26217e7607f546cfefcd854f3b4416c19
--- /dev/null
+++ b/content/browser/mojo/mojo_application_host.cc
@@ -0,0 +1,65 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/mojo/mojo_application_host.h"
+
+#include "content/common/mojo/mojo_messages.h"
+#include "content/public/browser/browser_thread.h"
+#include "ipc/ipc_sender.h"
+#include "mojo/embedder/platform_channel_pair.h"
+
+namespace content {
+namespace {
+
+base::PlatformFile PlatformFileFromScopedPlatformHandle(
+ mojo::embedder::ScopedPlatformHandle handle) {
+#if defined(OS_POSIX)
+ return handle.release().fd;
+#elif defined(OS_WIN)
+ return handle.release().handle;
+#endif
+}
+
+} // namespace
+
+MojoApplicationHost::MojoApplicationHost() : did_activate_(false) {
+}
+
+MojoApplicationHost::~MojoApplicationHost() {
+}
+
+bool MojoApplicationHost::Init() {
+ DCHECK(shell_client_.is_null()) << "Already initialized!";
+
+ mojo::embedder::PlatformChannelPair channel_pair;
+
+ mojo::ScopedMessagePipeHandle message_pipe = channel_init_.Init(
+ PlatformFileFromScopedPlatformHandle(channel_pair.PassServerHandle()),
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO));
+ if (!message_pipe.is_valid())
+ return false;
+
+ // Forward this to the client once we know its process handle.
+ client_handle_ = channel_pair.PassClientHandle();
+
+ // TODO(darin): Provide a Shell implementation
+ shell_client_.reset(
+ mojo::ScopedShellClientHandle::From(message_pipe.Pass()), NULL);
+
+ return true;
+}
+
+bool MojoApplicationHost::Activate(IPC::Sender* sender,
+ base::ProcessHandle process_handle) {
+ DCHECK(!did_activate_);
+ DCHECK(client_handle_.is_valid());
+
+ base::PlatformFile client_file =
+ PlatformFileFromScopedPlatformHandle(client_handle_.Pass());
+ did_activate_ = sender->Send(new MojoMsg_Activate(
+ IPC::GetFileHandleForProcess(client_file, process_handle, true)));
+ return did_activate_;
+}
+
+} // namespace content
« no previous file with comments | « content/browser/mojo/mojo_application_host.h ('k') | content/browser/renderer_host/render_process_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698