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

Unified Diff: mojo/shell/dynamic_service_runner.h

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_service_runner.h
diff --git a/mojo/shell/dynamic_service_runner.h b/mojo/shell/dynamic_service_runner.h
index 1409fb0e5f7b92bc863732f8bfa87a1f3acbbc47..aa392f853097a47283e97f9b7dd43cc9274f6420 100644
--- a/mojo/shell/dynamic_service_runner.h
+++ b/mojo/shell/dynamic_service_runner.h
@@ -6,7 +6,6 @@
#define MOJO_SHELL_DYNAMIC_SERVICE_RUNNER_H_
#include "base/callback_forward.h"
-#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "mojo/public/cpp/system/core.h"
@@ -45,7 +44,7 @@ class DynamicServiceRunnerFactoryImpl : public DynamicServiceRunnerFactory {
public:
DynamicServiceRunnerFactoryImpl() {}
virtual ~DynamicServiceRunnerFactoryImpl() {}
- virtual scoped_ptr<DynamicServiceRunner> Create(Context* context) OVERRIDE {
+ virtual scoped_ptr<DynamicServiceRunner> Create(Context* context) override {
return scoped_ptr<DynamicServiceRunner>(
new DynamicServiceRunnerImpl(context));
}

Powered by Google App Engine
This is Rietveld 408576698