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

Unified Diff: Source/core/css/CSSKeyframesRule.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/CSSKeyframeRule.h ('k') | Source/core/css/CSSMediaRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframesRule.h
diff --git a/Source/core/css/CSSKeyframesRule.h b/Source/core/css/CSSKeyframesRule.h
index 197a79289211841ee4b0488538727c0ca1a7ee50..ef9e45fb7086191b708951578d37ddcf48922d0e 100644
--- a/Source/core/css/CSSKeyframesRule.h
+++ b/Source/core/css/CSSKeyframesRule.h
@@ -82,7 +82,6 @@ public:
virtual ~CSSKeyframesRule();
- virtual CSSRule::Type type() const override { return KEYFRAMES_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase*) override;
@@ -107,6 +106,8 @@ public:
private:
CSSKeyframesRule(StyleRuleKeyframes*, CSSStyleSheet* parent);
+ virtual CSSRule::Type type() const override { return KEYFRAMES_RULE; }
+
RefPtrWillBeMember<StyleRuleKeyframes> m_keyframesRule;
mutable WillBeHeapVector<RefPtrWillBeMember<CSSKeyframeRule> > m_childRuleCSSOMWrappers;
mutable OwnPtrWillBeMember<CSSRuleList> m_ruleListCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSKeyframeRule.h ('k') | Source/core/css/CSSMediaRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698