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

Unified Diff: Source/core/css/MediaQueryListEvent.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/css/MediaQueryList.h ('k') | Source/core/css/MediaQueryListTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaQueryListEvent.h
diff --git a/Source/core/css/MediaQueryListEvent.h b/Source/core/css/MediaQueryListEvent.h
index 57e0daa4bc9e50760b1997493baae4262fb458af..f5786bf246142f13e0829633ac2c0f5f610d83cd 100644
--- a/Source/core/css/MediaQueryListEvent.h
+++ b/Source/core/css/MediaQueryListEvent.h
@@ -17,7 +17,7 @@ struct MediaQueryListEventInit : public EventInit {
bool matches;
};
-class MediaQueryListEvent FINAL : public Event {
+class MediaQueryListEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<MediaQueryListEvent> create()
@@ -43,9 +43,9 @@ public:
String media() const { return m_mediaQueryList ? m_mediaQueryList->media() : m_media; }
bool matches() const { return m_mediaQueryList ? m_mediaQueryList->matches() : m_matches; }
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::MediaQueryListEvent; }
+ virtual const AtomicString& interfaceName() const override { return EventNames::MediaQueryListEvent; }
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
Event::trace(visitor);
visitor->trace(m_mediaQueryList);
« no previous file with comments | « Source/core/css/MediaQueryList.h ('k') | Source/core/css/MediaQueryListTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698