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

Unified Diff: extensions/browser/api/declarative/declarative_api.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: extensions/browser/api/declarative/declarative_api.h
diff --git a/extensions/browser/api/declarative/declarative_api.h b/extensions/browser/api/declarative/declarative_api.h
index 72180dd0448712182a830f9cc27b9d4a12120eb4..acc2edf4c81e9c666deb0491126f1fa435d239d0 100644
--- a/extensions/browser/api/declarative/declarative_api.h
+++ b/extensions/browser/api/declarative/declarative_api.h
@@ -20,8 +20,8 @@ class RulesFunction : public AsyncExtensionFunction {
virtual ~RulesFunction();
// ExtensionFunction:
- virtual bool HasPermission() OVERRIDE;
- virtual bool RunAsync() OVERRIDE;
+ virtual bool HasPermission() override;
+ virtual bool RunAsync() override;
// Concrete implementation of the RulesFunction that is being called
// on the thread on which the respective RulesRegistry lives.
@@ -39,7 +39,7 @@ class EventsEventAddRulesFunction : public RulesFunction {
virtual ~EventsEventAddRulesFunction() {}
// RulesFunction:
- virtual bool RunAsyncOnCorrectThread() OVERRIDE;
+ virtual bool RunAsyncOnCorrectThread() override;
};
class EventsEventRemoveRulesFunction : public RulesFunction {
@@ -50,7 +50,7 @@ class EventsEventRemoveRulesFunction : public RulesFunction {
virtual ~EventsEventRemoveRulesFunction() {}
// RulesFunction:
- virtual bool RunAsyncOnCorrectThread() OVERRIDE;
+ virtual bool RunAsyncOnCorrectThread() override;
};
class EventsEventGetRulesFunction : public RulesFunction {
@@ -61,7 +61,7 @@ class EventsEventGetRulesFunction : public RulesFunction {
virtual ~EventsEventGetRulesFunction() {}
// RulesFunction:
- virtual bool RunAsyncOnCorrectThread() OVERRIDE;
+ virtual bool RunAsyncOnCorrectThread() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698