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

Unified Diff: Source/core/css/CSSKeyframeRule.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/CSSImportRule.h ('k') | Source/core/css/CSSKeyframesRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframeRule.h
diff --git a/Source/core/css/CSSKeyframeRule.h b/Source/core/css/CSSKeyframeRule.h
index 7aae426c942931fbd3238125858b1276164129c5..49be2d453b3ee519293a0a748866a549ed652685 100644
--- a/Source/core/css/CSSKeyframeRule.h
+++ b/Source/core/css/CSSKeyframeRule.h
@@ -39,10 +39,10 @@ class KeyframeStyleRuleCSSStyleDeclaration;
class CSSKeyframeRule final : public CSSRule {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~CSSKeyframeRule();
+ ~CSSKeyframeRule() override;
- virtual String cssText() const override { return m_keyframe->cssText(); }
- virtual void reattach(StyleRuleBase*) override;
+ String cssText() const override { return m_keyframe->cssText(); }
+ void reattach(StyleRuleBase*) override;
String keyText() const { return m_keyframe->keyText(); }
void setKeyText(const String&, ExceptionState&);
@@ -54,7 +54,7 @@ public:
private:
CSSKeyframeRule(StyleRuleKeyframe*, CSSKeyframesRule* parent);
- virtual CSSRule::Type type() const override { return KEYFRAME_RULE; }
+ CSSRule::Type type() const override { return KEYFRAME_RULE; }
RefPtrWillBeMember<StyleRuleKeyframe> m_keyframe;
mutable RefPtrWillBeMember<KeyframeStyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSImportRule.h ('k') | Source/core/css/CSSKeyframesRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698