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

Unified Diff: Source/core/css/CSSKeyframesRule.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/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 f8d505690f3e4f769cae55a64a8c590c7c91df63..69574322c5f791ed31107b5332096247941f1a0c 100644
--- a/Source/core/css/CSSKeyframesRule.h
+++ b/Source/core/css/CSSKeyframesRule.h
@@ -84,10 +84,10 @@ public:
return adoptRefWillBeNoop(new CSSKeyframesRule(rule, sheet));
}
- virtual ~CSSKeyframesRule();
+ ~CSSKeyframesRule() override;
- virtual String cssText() const override;
- virtual void reattach(StyleRuleBase*) override;
+ String cssText() const override;
+ void reattach(StyleRuleBase*) override;
String name() const { return m_keyframesRule->name(); }
void setName(const String&);
@@ -113,7 +113,7 @@ public:
private:
CSSKeyframesRule(StyleRuleKeyframes*, CSSStyleSheet* parent);
- virtual CSSRule::Type type() const override { return KEYFRAMES_RULE; }
+ CSSRule::Type type() const override { return KEYFRAMES_RULE; }
RefPtrWillBeMember<StyleRuleKeyframes> m_keyframesRule;
mutable WillBeHeapVector<RefPtrWillBeMember<CSSKeyframeRule>> m_childRuleCSSOMWrappers;
« 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