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

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

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« 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 69644ef33bcfe635a9ad4515af4e139dcdbe042a..6a6e5dc4298ae21d0a04a7d5ab41ab7030614dd2 100644
--- a/Source/core/css/MediaQueryListEvent.h
+++ b/Source/core/css/MediaQueryListEvent.h
@@ -37,7 +37,7 @@ 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; }
+ const AtomicString& interfaceName() const override { return EventNames::MediaQueryListEvent; }
DEFINE_INLINE_VIRTUAL_TRACE()
{
« 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