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

Unified Diff: Source/core/css/CSSCharsetRule.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/CSSBorderImageSliceValue.h ('k') | Source/core/css/CSSCrossfadeValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSCharsetRule.h
diff --git a/Source/core/css/CSSCharsetRule.h b/Source/core/css/CSSCharsetRule.h
index 86a0814a0656bffd09ca696fd48fa72188353b14..e6a0425257dc3028b23fe19203b03c6fc03003b5 100644
--- a/Source/core/css/CSSCharsetRule.h
+++ b/Source/core/css/CSSCharsetRule.h
@@ -36,7 +36,6 @@ public:
virtual ~CSSCharsetRule() { }
- virtual CSSRule::Type type() const override { return CHARSET_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase* rule) override { ASSERT_UNUSED(rule, !rule); }
@@ -48,6 +47,8 @@ public:
private:
CSSCharsetRule(CSSStyleSheet* parent, const String& encoding);
+ virtual CSSRule::Type type() const override { return CHARSET_RULE; }
+
String m_encoding;
};
« no previous file with comments | « Source/core/css/CSSBorderImageSliceValue.h ('k') | Source/core/css/CSSCrossfadeValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698