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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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: Source/modules/push_messaging/PushEvent.h
diff --git a/Source/modules/push_messaging/PushEvent.h b/Source/modules/push_messaging/PushEvent.h
index 479c74ff3d2fdda09a56fed2515ed5a8795734de..229cd763955f8b1a3734edfe93d66da4f9f09211 100644
--- a/Source/modules/push_messaging/PushEvent.h
+++ b/Source/modules/push_messaging/PushEvent.h
@@ -32,9 +32,9 @@ public:
return adoptRefWillBeNoop(new PushEvent(type, initializer));
}
- virtual ~PushEvent();
+ ~PushEvent() override;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
PushMessageData* data();

Powered by Google App Engine
This is Rietveld 408576698