| Index: mojo/shell/runner/host/in_process_native_runner.cc
|
| diff --git a/mojo/shell/runner/host/in_process_native_runner.cc b/mojo/shell/runner/host/in_process_native_runner.cc
|
| index 9cd89dbdf737b704581d5d16f59f51919ecd9879..3c3b1be91bb46e2b6f81a5d0dbcc34621da7f8f9 100644
|
| --- a/mojo/shell/runner/host/in_process_native_runner.cc
|
| +++ b/mojo/shell/runner/host/in_process_native_runner.cc
|
| @@ -37,7 +37,7 @@ void InProcessNativeRunner::Start(
|
| const base::FilePath& app_path,
|
| const Identity& target,
|
| bool start_sandboxed,
|
| - InterfaceRequest<mojom::ShellClient> request,
|
| + mojom::ShellClientRequest request,
|
| const base::Callback<void(base::ProcessId)>& pid_available_callback,
|
| const base::Closure& app_completed_callback) {
|
| app_path_ = app_path;
|
| @@ -60,9 +60,9 @@ void InProcessNativeRunner::Start(
|
| pid_available_callback.Run(base::kNullProcessId);
|
| }
|
|
|
| -void InProcessNativeRunner::InitHost(
|
| - ScopedHandle channel,
|
| - InterfaceRequest<mojom::ShellClient> request) {
|
| +void InProcessNativeRunner::InitHost(mojom::ShellClientFactoryPtr factory,
|
| + const String& name,
|
| + mojom::ShellClientRequest request) {
|
| NOTREACHED(); // Can't host another process in this runner.
|
| }
|
|
|
|
|