| Index: mojo/runner/in_process_native_runner.h
|
| diff --git a/mojo/runner/in_process_native_runner.h b/mojo/runner/in_process_native_runner.h
|
| index f5275a9c07c9dc77810e4f3762eba724eb25cc0d..c46a14758694955e05eeea0eb3a3a607e5a6e74b 100644
|
| --- a/mojo/runner/in_process_native_runner.h
|
| +++ b/mojo/runner/in_process_native_runner.h
|
| @@ -30,7 +30,6 @@ class InProcessNativeRunner : public shell::NativeRunner,
|
| // |NativeRunner| method:
|
| void Start(const base::FilePath& app_path,
|
| bool start_sandboxed,
|
| - shell::NativeApplicationCleanup cleanup,
|
| InterfaceRequest<Application> application_request,
|
| const base::Closure& app_completed_callback) override;
|
|
|
| @@ -39,7 +38,6 @@ class InProcessNativeRunner : public shell::NativeRunner,
|
| void Run() override;
|
|
|
| base::FilePath app_path_;
|
| - shell::NativeApplicationCleanup cleanup_;
|
| InterfaceRequest<Application> application_request_;
|
| base::Callback<bool(void)> app_completed_callback_runner_;
|
|
|
| @@ -54,7 +52,7 @@ class InProcessNativeRunnerFactory : public shell::NativeRunnerFactory {
|
| explicit InProcessNativeRunnerFactory(Context* context) : context_(context) {}
|
| ~InProcessNativeRunnerFactory() override {}
|
|
|
| - scoped_ptr<shell::NativeRunner> Create(const Options& options) override;
|
| + scoped_ptr<shell::NativeRunner> Create() override;
|
|
|
| private:
|
| Context* const context_;
|
|
|