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

Unified Diff: Source/core/css/CSSMediaRule.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/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 93b61da16c6179fb98d15ad8afc978fd64cc7789..b0f75b05c11932ae437932c43a1c360c0fb3f1bf 100644
--- a/Source/core/css/CSSMediaRule.h
+++ b/Source/core/css/CSSMediaRule.h
@@ -38,10 +38,10 @@ public:
return adoptRefWillBeNoop(new CSSMediaRule(rule, sheet));
}
- virtual ~CSSMediaRule();
+ ~CSSMediaRule() override;
- virtual void reattach(StyleRuleBase*) override;
- virtual String cssText() const override;
+ void reattach(StyleRuleBase*) override;
+ String cssText() const override;
MediaList* media() const;
@@ -50,7 +50,7 @@ public:
private:
CSSMediaRule(StyleRuleMedia*, CSSStyleSheet*);
- virtual CSSRule::Type type() const override { return MEDIA_RULE; }
+ CSSRule::Type type() const override { return MEDIA_RULE; }
MediaQuerySet* mediaQueries() const;
« 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