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

Unified Diff: Source/core/css/CSSFilterRule.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/CSSCrossfadeValue.h ('k') | Source/core/css/CSSFontFaceRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFilterRule.h
diff --git a/Source/core/css/CSSFilterRule.h b/Source/core/css/CSSFilterRule.h
index 3a9ba7295818b033a9e9c191f1a57dd04c26417e..2cb04ee5b29f6b608b5d4705c7c4d20d966febfa 100644
--- a/Source/core/css/CSSFilterRule.h
+++ b/Source/core/css/CSSFilterRule.h
@@ -49,7 +49,6 @@ public:
virtual ~CSSFilterRule();
- virtual CSSRule::Type type() const override { return WEBKIT_FILTER_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase*) override;
@@ -60,6 +59,8 @@ public:
private:
CSSFilterRule(StyleRuleFilter*, CSSStyleSheet* parent);
+ virtual CSSRule::Type type() const override { return WEBKIT_FILTER_RULE; }
+
RefPtrWillBeMember<StyleRuleFilter> m_filterRule;
mutable RefPtrWillBeMember<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
};
« no previous file with comments | « Source/core/css/CSSCrossfadeValue.h ('k') | Source/core/css/CSSFontFaceRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698