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

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

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/CSSMatrix.h ('k') | Source/core/css/CSSPageRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSMediaRule.h
diff --git a/Source/core/css/CSSMediaRule.h b/Source/core/css/CSSMediaRule.h
index fd49fee172e6db8b64c3e035b2b80465bbe01717..adb7329c2691fb990d87c4b5de7f0286d8301741 100644
--- a/Source/core/css/CSSMediaRule.h
+++ b/Source/core/css/CSSMediaRule.h
@@ -30,7 +30,7 @@ namespace blink {
class StyleRuleMedia;
-class CSSMediaRule FINAL : public CSSGroupingRule {
+class CSSMediaRule final : public CSSGroupingRule {
public:
static PassRefPtrWillBeRawPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet)
{
@@ -39,13 +39,13 @@ public:
virtual ~CSSMediaRule();
- virtual CSSRule::Type type() const OVERRIDE { return MEDIA_RULE; }
- virtual void reattach(StyleRuleBase*) OVERRIDE;
- virtual String cssText() const OVERRIDE;
+ virtual CSSRule::Type type() const override { return MEDIA_RULE; }
+ virtual void reattach(StyleRuleBase*) override;
+ virtual String cssText() const override;
MediaList* media() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
CSSMediaRule(StyleRuleMedia*, CSSStyleSheet*);
« no previous file with comments | « Source/core/css/CSSMatrix.h ('k') | Source/core/css/CSSPageRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698