| Index: shell/native_runner_unittest.cc
|
| diff --git a/shell/native_runner_unittest.cc b/shell/native_runner_unittest.cc
|
| index a04d4c88b4f5f141827a92ad1c712d6f15f814b6..fe21447205ac0e6af879180e03ef29c08f00f553 100644
|
| --- a/shell/native_runner_unittest.cc
|
| +++ b/shell/native_runner_unittest.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "base/files/scoped_temp_dir.h"
|
| #include "shell/application_manager/application_manager.h"
|
| +#include "shell/application_manager/native_application_options.h"
|
| #include "shell/context.h"
|
| #include "shell/filename_util.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -45,7 +46,8 @@ class TestNativeRunnerFactory : public NativeRunnerFactory {
|
| public:
|
| explicit TestNativeRunnerFactory(TestState* state) : state_(state) {}
|
| ~TestNativeRunnerFactory() override {}
|
| - scoped_ptr<NativeRunner> Create(const Options& options) override {
|
| + scoped_ptr<NativeRunner> Create(
|
| + const NativeApplicationOptions& /*options*/) override {
|
| return scoped_ptr<NativeRunner>(new TestNativeRunner(state_));
|
| }
|
|
|
|
|