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

Unified Diff: Source/modules/push_messaging/PushController.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (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/modules/push_messaging/NavigatorPushManager.h ('k') | Source/modules/push_messaging/PushEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/push_messaging/PushController.h
diff --git a/Source/modules/push_messaging/PushController.h b/Source/modules/push_messaging/PushController.h
index a755f981caf7073fe41c12893c34cc8c273c6975..26d1e9aa5dbe28614909608a4cf7f3c137f9f8cc 100644
--- a/Source/modules/push_messaging/PushController.h
+++ b/Source/modules/push_messaging/PushController.h
@@ -15,7 +15,7 @@ namespace blink {
class WebPushClient;
-class PushController FINAL : public NoBaseWillBeGarbageCollected<PushController>, public WillBeHeapSupplement<Page> {
+class PushController final : public NoBaseWillBeGarbageCollected<PushController>, public WillBeHeapSupplement<Page> {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PushController);
WTF_MAKE_NONCOPYABLE(PushController);
@@ -27,7 +27,7 @@ public:
WebPushClient* client() const { return m_client; }
- virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { WillBeHeapSupplement<Page>::trace(visitor); }
private:
explicit PushController(WebPushClient*);
« no previous file with comments | « Source/modules/push_messaging/NavigatorPushManager.h ('k') | Source/modules/push_messaging/PushEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698