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

Unified Diff: Source/core/css/CSSImportRule.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/CSSFontSelector.h ('k') | Source/core/css/CSSKeyframeRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSImportRule.h
diff --git a/Source/core/css/CSSImportRule.h b/Source/core/css/CSSImportRule.h
index f82327644a26ffd938180fab44494b8200727c64..9942d43a4106e680193ec5e67d962411c81b94fb 100644
--- a/Source/core/css/CSSImportRule.h
+++ b/Source/core/css/CSSImportRule.h
@@ -40,7 +40,6 @@ public:
virtual ~CSSImportRule();
- virtual CSSRule::Type type() const override { return IMPORT_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase*) override;
@@ -53,6 +52,8 @@ public:
private:
CSSImportRule(StyleRuleImport*, CSSStyleSheet*);
+ virtual CSSRule::Type type() const override { return IMPORT_RULE; }
+
RefPtrWillBeMember<StyleRuleImport> m_importRule;
mutable RefPtrWillBeMember<MediaList> m_mediaCSSOMWrapper;
mutable RefPtrWillBeMember<CSSStyleSheet> m_styleSheetCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSFontSelector.h ('k') | Source/core/css/CSSKeyframeRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698