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

Unified Diff: mojo/shell/out_of_process_dynamic_service_runner.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/out_of_process_dynamic_service_runner.h
diff --git a/mojo/shell/out_of_process_dynamic_service_runner.h b/mojo/shell/out_of_process_dynamic_service_runner.h
index bee4e19446a2051554db417d41ed91f916e02866..9b3c96db379b6c054dc040053407ce21fe3a47f7 100644
--- a/mojo/shell/out_of_process_dynamic_service_runner.h
+++ b/mojo/shell/out_of_process_dynamic_service_runner.h
@@ -19,24 +19,24 @@ namespace shell {
// (from the file system) in a separate process (of its own).
class OutOfProcessDynamicServiceRunner
: public DynamicServiceRunner,
- public mojo_shell::AppChildControllerClient {
+ public AppChildControllerClient {
public:
explicit OutOfProcessDynamicServiceRunner(Context* context);
virtual ~OutOfProcessDynamicServiceRunner();
// |DynamicServiceRunner| method:
virtual void Start(const base::FilePath& app_path,
- ScopedShellHandle service_handle,
+ ScopedMessagePipeHandle service_handle,
const base::Closure& app_completed_callback) OVERRIDE;
private:
- // |mojo_shell::AppChildControllerClient| method:
+ // |AppChildControllerClient| method:
virtual void AppCompleted(int32_t result) OVERRIDE;
Context* const context_;
base::FilePath app_path_;
- ScopedShellHandle service_handle_;
+ ScopedMessagePipeHandle service_handle_;
base::Closure app_completed_callback_;
scoped_ptr<AppChildProcessHost> app_child_process_host_;

Powered by Google App Engine
This is Rietveld 408576698