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

Unified Diff: content/browser/renderer_host/render_process_host_mojo_impl.h

Issue 206923002: Adds plumbing to pass WebUI mojo::Handle from browser to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO and merge to trunk Created 6 years, 9 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/renderer_host/render_process_host_mojo_impl.h
diff --git a/content/browser/renderer_host/render_process_host_mojo_impl.h b/content/browser/renderer_host/render_process_host_mojo_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..cfd86c880fca25ea6e273f75a60d543dfcb171e9
--- /dev/null
+++ b/content/browser/renderer_host/render_process_host_mojo_impl.h
@@ -0,0 +1,54 @@
+// 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.
+
+#ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_MOJO_IMPL_H_
+#define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_MOJO_IMPL_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/process/process_handle.h"
+#include "content/common/mojo/render_process.mojom.h"
+#include "mojo/public/bindings/remote_ptr.h"
+
+namespace content {
+
+class MojoChannelInit;
+class RenderProcessHost;
+
+
+// RenderProcessHostMojoImpl is responsible for initiating and maintaining the
+// connection with the content side of RenderProcessHostMojo.
+class RenderProcessHostMojoImpl : public RenderProcessHostMojo {
+ public:
+ explicit RenderProcessHostMojoImpl(RenderProcessHost* host);
+ virtual ~RenderProcessHostMojoImpl();
+
+ void SetWebUIHandle(int32 view_routing_id,
+ mojo::ScopedMessagePipeHandle handle);
+
+ // Invoked when the RenderPorcessHost has established a channel.
+ void OnProcessLaunched();
+
+private:
+ struct PendingHandle;
+
+ // Establishes the mojo channel to the renderer.
+ void CreateMojoChannel(base::ProcessHandle process_handle);
+
+ RenderProcessHost* host_;
+
+ // Used to establish the connection.
+ scoped_ptr<MojoChannelInit> mojo_channel_init_;
+
+ mojo::RemotePtr<content::RenderProcessMojo> render_process_mojo_;
+
+ // If non-null we're waiting to send a WebUI handle to the renderer when
+ // connected.
+ scoped_ptr<PendingHandle> pending_handle_;
+
+ DISALLOW_COPY_AND_ASSIGN(RenderProcessHostMojoImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_MOJO_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698