Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3051)

Unified Diff: shell/native_runner_unittest.cc

Issue 1378303005: Do some plumbing. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_));
}

Powered by Google App Engine
This is Rietveld 408576698