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 f5e098f344317ef0872d5176e6fd3cfb656f35b7..4b030cf28eb54f41b080cf5099a1f9cf4b43ab05 100644 |
--- a/mojo/runner/in_process_native_runner_unittest.cc |
+++ b/mojo/runner/in_process_native_runner_unittest.cc |
@@ -4,6 +4,7 @@ |
#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" |
@@ -11,7 +12,9 @@ namespace mojo { |
namespace runner { |
TEST(InProcessNativeRunnerTest, NotStarted) { |
- Context context; |
+ base::FilePath shell_dir; |
+ PathService::Get(base::DIR_MODULE, &shell_dir); |
+ Context context(shell_dir); |
base::MessageLoop loop; |
context.Init(); |
InProcessNativeRunner runner(&context); |