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

Unified Diff: Source/modules/encryptedmedia/MediaKeyMessageEvent.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
Index: Source/modules/encryptedmedia/MediaKeyMessageEvent.h
diff --git a/Source/modules/encryptedmedia/MediaKeyMessageEvent.h b/Source/modules/encryptedmedia/MediaKeyMessageEvent.h
index 306753b8b8a7a539cfe3a891c8f154701b193700..f57fb1140d8eeeb7d979ae7dbc3b37757a1f46e5 100644
--- a/Source/modules/encryptedmedia/MediaKeyMessageEvent.h
+++ b/Source/modules/encryptedmedia/MediaKeyMessageEvent.h
@@ -40,7 +40,7 @@ struct MediaKeyMessageEventInit : public EventInit {
String destinationURL;
};
-class MediaKeyMessageEvent FINAL : public Event {
+class MediaKeyMessageEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~MediaKeyMessageEvent();
@@ -55,12 +55,12 @@ public:
return adoptRefWillBeNoop(new MediaKeyMessageEvent(type, initializer));
}
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
ArrayBuffer* message() const { return m_message.get(); }
String destinationURL() const { return m_destinationURL; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
MediaKeyMessageEvent();
« no previous file with comments | « Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp ('k') | Source/modules/encryptedmedia/MediaKeyNeededEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698