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

Unified Diff: shell/in_process_dynamic_service_runner.h

Issue 868463008: Remove Client relationship between mojo.Shell/mojo.Application (Closed) Base URL: git@github.com:domokit/mojo.git@app_impl_init
Patch Set: fix android Created 5 years, 11 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: shell/in_process_dynamic_service_runner.h
diff --git a/shell/in_process_dynamic_service_runner.h b/shell/in_process_dynamic_service_runner.h
index a509f9addbf26c6a1124e09f59462533121a2901..b27ef809b8f9eb06a9237795722d66551dbc97e2 100644
--- a/shell/in_process_dynamic_service_runner.h
+++ b/shell/in_process_dynamic_service_runner.h
@@ -26,7 +26,7 @@ class InProcessDynamicServiceRunner
// |DynamicServiceRunner| method:
void Start(const base::FilePath& app_path,
- ScopedMessagePipeHandle service_handle,
+ InterfaceRequest<Application> application_request,
const base::Closure& app_completed_callback) override;
private:
@@ -34,7 +34,7 @@ class InProcessDynamicServiceRunner
void Run() override;
base::FilePath app_path_;
- ScopedMessagePipeHandle service_handle_;
+ InterfaceRequest<Application> application_request_;
base::Callback<bool(void)> app_completed_callback_runner_;
base::ScopedNativeLibrary app_library_;

Powered by Google App Engine
This is Rietveld 408576698