summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/notification_provider/notification_provider_api.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-03 17:40:32 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-04 00:40:55 +0000
commita15bee143f21dcc0fb91b8b7f81848a7e51a38bb (patch)
tree10b6e06058381b392a2e0147360afea9de38b36b /chrome/browser/extensions/api/notification_provider/notification_provider_api.h
parente7c9f7781cbc6db099dacbefdc19ac2fd9bfc19a (diff)
downloadchromium_src-a15bee143f21dcc0fb91b8b7f81848a7e51a38bb.zip
chromium_src-a15bee143f21dcc0fb91b8b7f81848a7e51a38bb.tar.gz
chromium_src-a15bee143f21dcc0fb91b8b7f81848a7e51a38bb.tar.bz2
replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/
BUG=417463 Review URL: https://codereview.chromium.org/624153002 Cr-Commit-Position: refs/heads/master@{#298134}
Diffstat (limited to 'chrome/browser/extensions/api/notification_provider/notification_provider_api.h')
-rw-r--r--chrome/browser/extensions/api/notification_provider/notification_provider_api.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/extensions/api/notification_provider/notification_provider_api.h b/chrome/browser/extensions/api/notification_provider/notification_provider_api.h
index 88f2d2e..46c6537 100644
--- a/chrome/browser/extensions/api/notification_provider/notification_provider_api.h
+++ b/chrome/browser/extensions/api/notification_provider/notification_provider_api.h
@@ -70,7 +70,7 @@ class NotificationProviderNotifyOnClearedFunction
NOTIFICATIONPROVIDER_NOTIFYONCLEARED);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
// Implememtation of NotifyOnClicked function of the API. It will inform the
@@ -89,7 +89,7 @@ class NotificationProviderNotifyOnClickedFunction
NOTIFICATIONPROVIDER_NOTIFYONCLICKED);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
// Implememtation of NotifyOnButtonClicked function of the API. It will inform
@@ -109,7 +109,7 @@ class NotificationProviderNotifyOnButtonClickedFunction
NOTIFICATIONPROVIDER_NOTIFYONBUTTONCLICKED);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
// Implememtation of NotifyOnPermissionLevelChanged function of the API. It will
@@ -129,7 +129,7 @@ class NotificationProviderNotifyOnPermissionLevelChangedFunction
NOTIFICATIONPROVIDER_NOTIFYONPERMISSIONLEVELCHANGED);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
// Implememtation of NotifyOnShowSettings function of the API. It will inform
@@ -147,7 +147,7 @@ class NotificationProviderNotifyOnShowSettingsFunction
NOTIFICATIONPROVIDER_NOTIFYONSHOWSETTINGS);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
// Implememtation of GetNotifier function of the API. It will get the notifier
@@ -165,7 +165,7 @@ class NotificationProviderGetNotifierFunction
NOTIFICATIONPROVIDER_GETNOTIFIER);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
// Implememtation of GetAllNotifiers function of the API. It will get all the
@@ -183,7 +183,7 @@ class NotificationProviderGetAllNotifiersFunction
NOTIFICATIONPROVIDER_GETALLNOTIFIERS);
// UIThreadExtensionFunction implementation.
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
} // namespace extensions