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

Unified Diff: mojo/shell/dynamic_application_loader_unittest.cc

Issue 619493002: Mojo: Convert OVERRIDE -> override in various subdirectories of mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: mojo/shell/dynamic_application_loader_unittest.cc
diff --git a/mojo/shell/dynamic_application_loader_unittest.cc b/mojo/shell/dynamic_application_loader_unittest.cc
index 7e85af21fdfd10f8dd3705d8446a8967c819c5e0..ea6fb1da20b130580f4eb01d81a7eeafe0319e85 100644
--- a/mojo/shell/dynamic_application_loader_unittest.cc
+++ b/mojo/shell/dynamic_application_loader_unittest.cc
@@ -36,7 +36,7 @@ class TestDynamicServiceRunner : public DynamicServiceRunner {
}
virtual void Start(const base::FilePath& app_path,
ScopedMessagePipeHandle service_handle,
- const base::Closure& app_completed_callback) OVERRIDE {
+ const base::Closure& app_completed_callback) override {
state_->runner_was_started = true;
}
@@ -48,7 +48,7 @@ class TestDynamicServiceRunnerFactory : public DynamicServiceRunnerFactory {
public:
explicit TestDynamicServiceRunnerFactory(TestState* state) : state_(state) {}
virtual ~TestDynamicServiceRunnerFactory() {}
- virtual scoped_ptr<DynamicServiceRunner> Create(Context* context) OVERRIDE {
+ virtual scoped_ptr<DynamicServiceRunner> Create(Context* context) override {
return scoped_ptr<DynamicServiceRunner>(
new TestDynamicServiceRunner(state_));
}
@@ -63,7 +63,7 @@ class DynamicApplicationLoaderTest : public testing::Test {
public:
DynamicApplicationLoaderTest() {}
virtual ~DynamicApplicationLoaderTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
context_.Init();
scoped_ptr<DynamicServiceRunnerFactory> factory(
new TestDynamicServiceRunnerFactory(&state_));

Powered by Google App Engine
This is Rietveld 408576698