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

Unified Diff: Source/core/css/CSSFontFaceRule.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/CSSFilterRule.h ('k') | Source/core/css/CSSFontFaceSource.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 603669822b1ed37ea88eb9756c66eee497cfbea7..10f7622b811d93438787f47d8a8ce6c388d5d927 100644
--- a/Source/core/css/CSSFontFaceRule.h
+++ b/Source/core/css/CSSFontFaceRule.h
@@ -41,7 +41,6 @@ public:
virtual ~CSSFontFaceRule();
- virtual CSSRule::Type type() const override { return FONT_FACE_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase*) override;
@@ -54,6 +53,8 @@ public:
private:
CSSFontFaceRule(StyleRuleFontFace*, CSSStyleSheet* parent);
+ virtual 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/CSSFilterRule.h ('k') | Source/core/css/CSSFontFaceSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698