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

Unified Diff: mojo/runner/native_runner_unittest.cc

Issue 1344933002: Clean up some unused methods from ApplicationManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 3 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
« no previous file with comments | « mojo/runner/native_application_support.cc ('k') | mojo/runner/out_of_process_native_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/runner/native_runner_unittest.cc
diff --git a/mojo/runner/native_runner_unittest.cc b/mojo/runner/native_runner_unittest.cc
index 529d2762a8f3e7e7e0dcaa6223dbc4f060248527..5dba563581a29a0b628fe902cbeb44c28066253c 100644
--- a/mojo/runner/native_runner_unittest.cc
+++ b/mojo/runner/native_runner_unittest.cc
@@ -37,7 +37,6 @@ class TestNativeRunner : public shell::NativeRunner {
}
void Start(const base::FilePath& app_path,
bool start_sandboxed,
- shell::NativeApplicationCleanup cleanup,
InterfaceRequest<Application> application_request,
const base::Closure& app_completed_callback) override {
state_->runner_was_started = true;
@@ -51,7 +50,7 @@ class TestNativeRunnerFactory : public shell::NativeRunnerFactory {
public:
explicit TestNativeRunnerFactory(TestState* state) : state_(state) {}
~TestNativeRunnerFactory() override {}
- scoped_ptr<shell::NativeRunner> Create(const Options& options) override {
+ scoped_ptr<shell::NativeRunner> Create() override {
return scoped_ptr<shell::NativeRunner>(new TestNativeRunner(state_));
}
« no previous file with comments | « mojo/runner/native_application_support.cc ('k') | mojo/runner/out_of_process_native_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698