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

Unified Diff: chrome/browser/extensions/api/notifications/notifications_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/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: chrome/browser/extensions/api/notifications/notifications_api.h
diff --git a/chrome/browser/extensions/api/notifications/notifications_api.h b/chrome/browser/extensions/api/notifications/notifications_api.h
index bd1b511c6012ccacc094b9bc60fca9eefbe4016f..2f130b5d7642ba513e8a34ad8dfb90542cf4222d 100644
--- a/chrome/browser/extensions/api/notifications/notifications_api.h
+++ b/chrome/browser/extensions/api/notifications/notifications_api.h
@@ -45,7 +45,7 @@ class NotificationsApiFunction : public ChromeAsyncExtensionFunction {
virtual bool RunNotificationsApi() = 0;
// UITHreadExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
message_center::NotificationType MapApiTemplateTypeToType(
api::notifications::TemplateType type);
@@ -56,7 +56,7 @@ class NotificationsCreateFunction : public NotificationsApiFunction {
NotificationsCreateFunction();
// NotificationsApiFunction:
- virtual bool RunNotificationsApi() OVERRIDE;
+ virtual bool RunNotificationsApi() override;
protected:
virtual ~NotificationsCreateFunction();
@@ -72,7 +72,7 @@ class NotificationsUpdateFunction : public NotificationsApiFunction {
NotificationsUpdateFunction();
// NotificationsApiFunction:
- virtual bool RunNotificationsApi() OVERRIDE;
+ virtual bool RunNotificationsApi() override;
protected:
virtual ~NotificationsUpdateFunction();
@@ -88,7 +88,7 @@ class NotificationsClearFunction : public NotificationsApiFunction {
NotificationsClearFunction();
// NotificationsApiFunction:
- virtual bool RunNotificationsApi() OVERRIDE;
+ virtual bool RunNotificationsApi() override;
protected:
virtual ~NotificationsClearFunction();
@@ -104,7 +104,7 @@ class NotificationsGetAllFunction : public NotificationsApiFunction {
NotificationsGetAllFunction();
// NotificationsApiFunction:
- virtual bool RunNotificationsApi() OVERRIDE;
+ virtual bool RunNotificationsApi() override;
protected:
virtual ~NotificationsGetAllFunction();
@@ -119,8 +119,8 @@ class NotificationsGetPermissionLevelFunction
NotificationsGetPermissionLevelFunction();
// NotificationsApiFunction:
- virtual bool CanRunWhileDisabled() const OVERRIDE;
- virtual bool RunNotificationsApi() OVERRIDE;
+ virtual bool CanRunWhileDisabled() const override;
+ virtual bool RunNotificationsApi() override;
protected:
virtual ~NotificationsGetPermissionLevelFunction();

Powered by Google App Engine
This is Rietveld 408576698