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

Unified Diff: Source/core/css/CSSFontFaceRule.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/CSSCustomFontData.h ('k') | Source/core/css/CSSFontSelector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFontFaceRule.h
diff --git a/Source/core/css/CSSFontFaceRule.h b/Source/core/css/CSSFontFaceRule.h
index 7638a8e67cb7052825c50f286b45b3d08e71e955..aaa67c7b0eb562ec18011a6f9123c6b428c8caa0 100644
--- a/Source/core/css/CSSFontFaceRule.h
+++ b/Source/core/css/CSSFontFaceRule.h
@@ -39,10 +39,10 @@ public:
return adoptRefWillBeNoop(new CSSFontFaceRule(rule, sheet));
}
- virtual ~CSSFontFaceRule();
+ ~CSSFontFaceRule() override;
- virtual String cssText() const override;
- virtual void reattach(StyleRuleBase*) override;
+ String cssText() const override;
+ void reattach(StyleRuleBase*) override;
CSSStyleDeclaration* style() const;
@@ -53,7 +53,7 @@ public:
private:
CSSFontFaceRule(StyleRuleFontFace*, CSSStyleSheet* parent);
- virtual CSSRule::Type type() const override { return FONT_FACE_RULE; }
+ CSSRule::Type type() const override { return FONT_FACE_RULE; }
RefPtrWillBeMember<StyleRuleFontFace> m_fontFaceRule;
mutable RefPtrWillBeMember<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSCustomFontData.h ('k') | Source/core/css/CSSFontSelector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698