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

Unified Diff: Source/modules/encryptedmedia/MediaKeyNeededEvent.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/MediaKeyNeededEvent.h
diff --git a/Source/modules/encryptedmedia/MediaKeyNeededEvent.h b/Source/modules/encryptedmedia/MediaKeyNeededEvent.h
index ba154833b138b55d8faca4b09494e6afa552b3f5..a7b03b9fd3993e7d2c0fcd0b4b1de51e109a023f 100644
--- a/Source/modules/encryptedmedia/MediaKeyNeededEvent.h
+++ b/Source/modules/encryptedmedia/MediaKeyNeededEvent.h
@@ -38,7 +38,7 @@ struct MediaKeyNeededEventInit : public EventInit {
RefPtr<Uint8Array> initData;
};
-class MediaKeyNeededEvent FINAL : public Event {
+class MediaKeyNeededEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~MediaKeyNeededEvent();
@@ -53,12 +53,12 @@ public:
return adoptRefWillBeNoop(new MediaKeyNeededEvent(type, initializer));
}
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
String contentType() const { return m_contentType; }
Uint8Array* initData() const { return m_initData.get(); }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
MediaKeyNeededEvent();
« no previous file with comments | « Source/modules/encryptedmedia/MediaKeyMessageEvent.h ('k') | Source/modules/encryptedmedia/MediaKeySession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698