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

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

Issue 208263008: Revert 258763 "Adds plumbing to pass WebUI mojo::Handle from bro..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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: trunk/src/content/browser/renderer_host/render_process_host_mojo_impl.h
===================================================================
--- trunk/src/content/browser/renderer_host/render_process_host_mojo_impl.h (revision 258768)
+++ trunk/src/content/browser/renderer_host/render_process_host_mojo_impl.h (working copy)
@@ -1,54 +0,0 @@
-// 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