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

Unified Diff: Source/core/css/CSSPageRule.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/CSSMediaRule.h ('k') | Source/core/css/CSSStyleRule.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 a7ce3282eb2fb88b90e00365aad89e6ee8fac17f..50cb4af09e2a1bc56170787415b39c5d11d98156 100644
--- a/Source/core/css/CSSPageRule.h
+++ b/Source/core/css/CSSPageRule.h
@@ -42,7 +42,6 @@ public:
virtual ~CSSPageRule();
- virtual CSSRule::Type type() const override { return PAGE_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase*) override;
@@ -56,6 +55,8 @@ public:
private:
CSSPageRule(StyleRulePage*, CSSStyleSheet*);
+ virtual 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/CSSStyleRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698