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

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

Issue 719833002: Clean up virtual functions in css/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove some changes Created 6 years, 1 month 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/CSSKeyframesRule.h ('k') | Source/core/css/CSSPageRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSMediaRule.h
diff --git a/Source/core/css/CSSMediaRule.h b/Source/core/css/CSSMediaRule.h
index e6d3cfe7bc61deb70c2214b4eb39003298237cec..8a19ce3456608a006c9935d9d69dc3f81bfca735 100644
--- a/Source/core/css/CSSMediaRule.h
+++ b/Source/core/css/CSSMediaRule.h
@@ -40,7 +40,6 @@ public:
virtual ~CSSMediaRule();
- virtual CSSRule::Type type() const override { return MEDIA_RULE; }
virtual void reattach(StyleRuleBase*) override;
virtual String cssText() const override;
@@ -51,6 +50,8 @@ public:
private:
CSSMediaRule(StyleRuleMedia*, CSSStyleSheet*);
+ virtual CSSRule::Type type() const override { return MEDIA_RULE; }
+
MediaQuerySet* mediaQueries() const;
mutable RefPtrWillBeMember<MediaList> m_mediaCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSKeyframesRule.h ('k') | Source/core/css/CSSPageRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698