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

Unified Diff: Source/core/css/CSSImportRule.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months 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/CSSGroupingRule.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 eb49fdad9ccefa89b30f188ad5d49cf38ac03c73..64c357c9e191d07f5ed6febe6e4a95b4550cdaea 100644
--- a/Source/core/css/CSSImportRule.h
+++ b/Source/core/css/CSSImportRule.h
@@ -38,10 +38,10 @@ public:
return adoptRefWillBeNoop(new CSSImportRule(rule, sheet));
}
- virtual ~CSSImportRule();
+ ~CSSImportRule() override;
- virtual String cssText() const override;
- virtual void reattach(StyleRuleBase*) override;
+ String cssText() const override;
+ void reattach(StyleRuleBase*) override;
String href() const;
MediaList* media() const;
@@ -52,7 +52,7 @@ public:
private:
CSSImportRule(StyleRuleImport*, CSSStyleSheet*);
- virtual CSSRule::Type type() const override { return IMPORT_RULE; }
+ CSSRule::Type type() const override { return IMPORT_RULE; }
RefPtrWillBeMember<StyleRuleImport> m_importRule;
mutable RefPtrWillBeMember<MediaList> m_mediaCSSOMWrapper;
« no previous file with comments | « Source/core/css/CSSGroupingRule.h ('k') | Source/core/css/CSSKeyframeRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698