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

Unified Diff: Source/core/html/MediaKeyEvent.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (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/core/html/MediaKeyError.h ('k') | Source/core/html/PluginDocument.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/MediaKeyEvent.h
diff --git a/Source/core/html/MediaKeyEvent.h b/Source/core/html/MediaKeyEvent.h
index 2394815a863523a9d1c230f5f911d3ea4e831357..07945c6c0dee88e98033b1c4dea8e832cbe8c428 100644
--- a/Source/core/html/MediaKeyEvent.h
+++ b/Source/core/html/MediaKeyEvent.h
@@ -43,7 +43,7 @@ struct MediaKeyEventInit : public EventInit {
unsigned short systemCode;
};
-class MediaKeyEvent FINAL : public Event {
+class MediaKeyEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~MediaKeyEvent();
@@ -58,7 +58,7 @@ public:
return adoptRefWillBeNoop(new MediaKeyEvent(type, initializer));
}
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
String keySystem() const { return m_keySystem; }
String sessionId() const { return m_sessionId; }
@@ -68,7 +68,7 @@ public:
MediaKeyError* errorCode() const { return m_errorCode.get(); }
unsigned short systemCode() const { return m_systemCode; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
MediaKeyEvent();
« no previous file with comments | « Source/core/html/MediaKeyError.h ('k') | Source/core/html/PluginDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698