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

Unified Diff: Source/core/css/CSSSupportsRule.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/CSSStyleSheet.cpp ('k') | Source/core/css/CSSViewportRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSSupportsRule.h
diff --git a/Source/core/css/CSSSupportsRule.h b/Source/core/css/CSSSupportsRule.h
index e328b68637f58c9bd067d4bac1c140653a2bd4c6..2f395366d58ef717980901aed2d2abf44f8fa849 100644
--- a/Source/core/css/CSSSupportsRule.h
+++ b/Source/core/css/CSSSupportsRule.h
@@ -43,9 +43,9 @@ public:
return adoptRefWillBeNoop(new CSSSupportsRule(rule, sheet));
}
- virtual ~CSSSupportsRule() { }
+ ~CSSSupportsRule() override { }
- virtual String cssText() const override;
+ String cssText() const override;
String conditionText() const;
@@ -54,7 +54,7 @@ public:
private:
CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*);
- virtual CSSRule::Type type() const override { return SUPPORTS_RULE; }
+ CSSRule::Type type() const override { return SUPPORTS_RULE; }
};
DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE);
« no previous file with comments | « Source/core/css/CSSStyleSheet.cpp ('k') | Source/core/css/CSSViewportRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698