| Index: mojo/shell/native_runner.h
|
| diff --git a/mojo/shell/native_runner.h b/mojo/shell/native_runner.h
|
| index 68b8279b4edc7801622b840b4442197212df01d5..ea99a75b03d165f5d818520844fee274093c5f25 100644
|
| --- a/mojo/shell/native_runner.h
|
| +++ b/mojo/shell/native_runner.h
|
| @@ -33,14 +33,15 @@ class NativeRunner {
|
| virtual 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) = 0;
|
|
|
| // Like Start(), but used to initialize the host for a child process started
|
| // by someone else. Provides |application_request| via |channel|.
|
| - virtual void InitHost(ScopedHandle channel,
|
| - InterfaceRequest<Application> application_request) = 0;
|
| + virtual void InitHost(
|
| + ScopedHandle channel,
|
| + InterfaceRequest<mojom::Application> application_request) = 0;
|
| };
|
|
|
| class NativeRunnerFactory {
|
|
|