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

Unified Diff: Source/core/css/CSSSupportsRule.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/CSSStyleRule.h ('k') | Source/core/css/CSSUnknownRule.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 3e06a4d13ad041d5b796e494e10f5a789b62b79f..30d2e35f0c237cf047125ad1be8bc17eeaad274e 100644
--- a/Source/core/css/CSSSupportsRule.h
+++ b/Source/core/css/CSSSupportsRule.h
@@ -45,7 +45,6 @@ public:
virtual ~CSSSupportsRule() { }
- virtual CSSRule::Type type() const override { return SUPPORTS_RULE; }
virtual String cssText() const override;
String conditionText() const;
@@ -54,6 +53,8 @@ public:
private:
CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*);
+
+ virtual CSSRule::Type type() const override { return SUPPORTS_RULE; }
};
DEFINE_CSS_RULE_TYPE_CASTS(CSSSupportsRule, SUPPORTS_RULE);
« no previous file with comments | « Source/core/css/CSSStyleRule.h ('k') | Source/core/css/CSSUnknownRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698