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

Unified Diff: mojo/shell/app_child_process_host.h

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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: mojo/shell/app_child_process_host.h
diff --git a/mojo/shell/app_child_process_host.h b/mojo/shell/app_child_process_host.h
index 04dc4c7939641ea7cf5d250d7152141850f2284b..30e6b798a24e2881465b08951689354a8125fd99 100644
--- a/mojo/shell/app_child_process_host.h
+++ b/mojo/shell/app_child_process_host.h
@@ -6,7 +6,6 @@
#define MOJO_SHELL_APP_CHILD_PROCESS_HOST_H_
#include "base/macros.h"
-#include "mojo/public/cpp/bindings/remote_ptr.h"
#include "mojo/shell/app_child_process.mojom.h"
#include "mojo/shell/child_process_host.h"
@@ -27,10 +26,10 @@ class AppChildProcessHost : public ChildProcessHost,
public ChildProcessHost::Delegate {
public:
AppChildProcessHost(Context* context,
- mojo_shell::AppChildControllerClient* controller_client);
+ AppChildControllerClient* controller_client);
virtual ~AppChildProcessHost();
- mojo_shell::AppChildController* controller() {
+ AppChildController* controller() {
return controller_.get();
}
@@ -42,9 +41,9 @@ class AppChildProcessHost : public ChildProcessHost,
// Callback for |embedder::CreateChannel()|.
void DidCreateChannel(embedder::ChannelInfo* channel_info);
- mojo_shell::AppChildControllerClient* const controller_client_;
+ AppChildControllerClient* const controller_client_;
- RemotePtr<mojo_shell::AppChildController> controller_;
+ AppChildControllerPtr controller_;
embedder::ChannelInfo* channel_info_;
DISALLOW_COPY_AND_ASSIGN(AppChildProcessHost);

Powered by Google App Engine
This is Rietveld 408576698