| Index: mojo/runner/in_process_native_runner_unittest.cc
|
| diff --git a/mojo/runner/in_process_native_runner_unittest.cc b/mojo/runner/in_process_native_runner_unittest.cc
|
| index 4b030cf28eb54f41b080cf5099a1f9cf4b43ab05..f5e098f344317ef0872d5176e6fd3cfb656f35b7 100644
|
| --- a/mojo/runner/in_process_native_runner_unittest.cc
|
| +++ b/mojo/runner/in_process_native_runner_unittest.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "mojo/runner/in_process_native_runner.h"
|
|
|
| -#include "base/path_service.h"
|
| #include "mojo/runner/context.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -12,9 +11,7 @@
|
| namespace runner {
|
|
|
| TEST(InProcessNativeRunnerTest, NotStarted) {
|
| - base::FilePath shell_dir;
|
| - PathService::Get(base::DIR_MODULE, &shell_dir);
|
| - Context context(shell_dir);
|
| + Context context;
|
| base::MessageLoop loop;
|
| context.Init();
|
| InProcessNativeRunner runner(&context);
|
|
|