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

Unified Diff: Source/core/css/CSSPageRule.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/CSSMediaRule.h ('k') | Source/core/css/CSSRuleList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPageRule.h
diff --git a/Source/core/css/CSSPageRule.h b/Source/core/css/CSSPageRule.h
index e829d833be08f0b1b9c1337b680bce35b4018e2f..0ab2fd150b453123fa17a291d9ae2888290d4c9b 100644
--- a/Source/core/css/CSSPageRule.h
+++ b/Source/core/css/CSSPageRule.h
@@ -40,10 +40,10 @@ public:
return adoptRefWillBeNoop(new CSSPageRule(rule, sheet));
}
- virtual ~CSSPageRule();
+ ~CSSPageRule() override;
- virtual String cssText() const override;
- virtual void reattach(StyleRuleBase*) override;
+ String cssText() const override;
+ void reattach(StyleRuleBase*) override;
CSSStyleDeclaration* style() const;
@@ -55,7 +55,7 @@ public:
private:
CSSPageRule(StyleRulePage*, CSSStyleSheet*);
- virtual CSSRule::Type type() const override { return PAGE_RULE; }
+ CSSRule::Type type() const override { return PAGE_RULE; }
RefPtrWillBeMember<StyleRulePage> m_pageRule;
mutable RefPtrWillBeMember<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSMediaRule.h ('k') | Source/core/css/CSSRuleList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698