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

Unified Diff: Source/web/NotificationPresenterImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
« no previous file with comments | « Source/web/NotificationPermissionClientImpl.cpp ('k') | Source/web/PageOverlay.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/NotificationPresenterImpl.h
diff --git a/Source/web/NotificationPresenterImpl.h b/Source/web/NotificationPresenterImpl.h
index 397112f38b18e44aa635c022bf43553784413a7e..dede32d9fee06fb3bcda7a03cacea24277fc2323 100644
--- a/Source/web/NotificationPresenterImpl.h
+++ b/Source/web/NotificationPresenterImpl.h
@@ -37,7 +37,7 @@ namespace blink {
class WebNotificationPresenter;
-class NotificationPresenterImpl FINAL : public NotificationClient {
+class NotificationPresenterImpl final : public NotificationClient {
public:
NotificationPresenterImpl();
@@ -45,10 +45,10 @@ public:
bool isInitialized();
// NotificationClient:
- virtual bool show(Notification*) OVERRIDE;
- virtual void close(Notification*) OVERRIDE;
- virtual void notificationObjectDestroyed(Notification*) OVERRIDE;
- virtual NotificationClient::Permission checkPermission(ExecutionContext*) OVERRIDE;
+ virtual bool show(Notification*) override;
+ virtual void close(Notification*) override;
+ virtual void notificationObjectDestroyed(Notification*) override;
+ virtual NotificationClient::Permission checkPermission(ExecutionContext*) override;
private:
// WebNotificationPresenter that this object delegates to.
« no previous file with comments | « Source/web/NotificationPermissionClientImpl.cpp ('k') | Source/web/PageOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698