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

Unified Diff: Source/modules/notifications/NotificationBase.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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/modules/notifications/Notification.h ('k') | Source/modules/notifications/NotificationCenter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/notifications/NotificationBase.h
diff --git a/Source/modules/notifications/NotificationBase.h b/Source/modules/notifications/NotificationBase.h
index 4baea6bd975ca8b326bfe53da7870b87fd988e07..c336f2c6577f0cd721564acb7592b2f3d4c96f96 100644
--- a/Source/modules/notifications/NotificationBase.h
+++ b/Source/modules/notifications/NotificationBase.h
@@ -82,8 +82,8 @@ public:
static const String& permissionString(NotificationClient::Permission);
// EventTarget interface
- virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveDOMObject::executionContext(); }
- virtual bool dispatchEvent(PassRefPtr<Event>) OVERRIDE;
+ virtual ExecutionContext* executionContext() const OVERRIDE FINAL { return ActiveDOMObject::executionContext(); }
+ virtual bool dispatchEvent(PassRefPtr<Event>) OVERRIDE FINAL;
// ActiveDOMObject interface
virtual void stop() OVERRIDE;
« no previous file with comments | « Source/modules/notifications/Notification.h ('k') | Source/modules/notifications/NotificationCenter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698