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

Unified Diff: Source/core/css/CSSViewportRule.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/CSSUnknownRule.h ('k') | Source/core/css/LocalFontFaceSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSViewportRule.h
diff --git a/Source/core/css/CSSViewportRule.h b/Source/core/css/CSSViewportRule.h
index 64a9b867cfc127faee6c49b3ad1f9703b29efd72..daf8987c4556b50dee4e7e8fe3a9534b1fa7dc33 100644
--- a/Source/core/css/CSSViewportRule.h
+++ b/Source/core/css/CSSViewportRule.h
@@ -49,7 +49,6 @@ public:
}
virtual ~CSSViewportRule();
- virtual CSSRule::Type type() const override { return VIEWPORT_RULE; }
virtual String cssText() const override;
virtual void reattach(StyleRuleBase*) override;
@@ -60,6 +59,8 @@ public:
private:
CSSViewportRule(StyleRuleViewport*, CSSStyleSheet*);
+ virtual CSSRule::Type type() const override { return VIEWPORT_RULE; }
+
RefPtrWillBeMember<StyleRuleViewport> m_viewportRule;
mutable RefPtrWillBeMember<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
};
« no previous file with comments | « Source/core/css/CSSUnknownRule.h ('k') | Source/core/css/LocalFontFaceSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698