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

Unified Diff: mojo/shell/runner/host/out_of_process_native_runner.h

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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/runner/host/out_of_process_native_runner.h
diff --git a/mojo/shell/runner/host/out_of_process_native_runner.h b/mojo/shell/runner/host/out_of_process_native_runner.h
index 74c1d5be028d1618df5572b319d7262ed9a8555e..794c1f3191c39f56c56a4b0f933f1ad78efa094f 100644
--- a/mojo/shell/runner/host/out_of_process_native_runner.h
+++ b/mojo/shell/runner/host/out_of_process_native_runner.h
@@ -33,11 +33,12 @@ class OutOfProcessNativeRunner : public NativeRunner {
void Start(
const base::FilePath& app_path,
bool start_sandboxed,
- InterfaceRequest<Application> application_request,
+ InterfaceRequest<mojom::Application> application_request,
const base::Callback<void(base::ProcessId)>& pid_available_callback,
const base::Closure& app_completed_callback) override;
- void InitHost(ScopedHandle channel,
- InterfaceRequest<Application> application_request) override;
+ void InitHost(
+ ScopedHandle channel,
+ InterfaceRequest<mojom::Application> application_request) override;
private:
// |ChildController::StartApp()| callback:
@@ -45,7 +46,7 @@ class OutOfProcessNativeRunner : public NativeRunner {
// Callback run when the child process has launched.
void OnProcessLaunched(
- InterfaceRequest<Application> application_request,
+ InterfaceRequest<mojom::Application> application_request,
const base::Callback<void(base::ProcessId)>& pid_available_callback,
base::ProcessId pid);
« no previous file with comments | « mojo/shell/runner/host/native_application_support.cc ('k') | mojo/shell/runner/host/out_of_process_native_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698