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

Unified Diff: Source/core/css/CSSSupportsRule.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/CSSStyleSheet.cpp ('k') | Source/core/css/CSSUnknownRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSSupportsRule.h
diff --git a/Source/core/css/CSSSupportsRule.h b/Source/core/css/CSSSupportsRule.h
index 4dd0cdad7fd5dcdf467af7a5fef810f590ddddf5..88433c450dd9a593c3fe256f97f129a5b88651d7 100644
--- a/Source/core/css/CSSSupportsRule.h
+++ b/Source/core/css/CSSSupportsRule.h
@@ -35,7 +35,7 @@ namespace blink {
class StyleRuleSupports;
-class CSSSupportsRule FINAL : public CSSGroupingRule {
+class CSSSupportsRule final : public CSSGroupingRule {
public:
static PassRefPtrWillBeRawPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet)
{
@@ -44,12 +44,12 @@ public:
virtual ~CSSSupportsRule() { }
- virtual CSSRule::Type type() const OVERRIDE { return SUPPORTS_RULE; }
- virtual String cssText() const OVERRIDE;
+ virtual CSSRule::Type type() const override { return SUPPORTS_RULE; }
+ virtual String cssText() const override;
String conditionText() const;
- virtual void trace(Visitor* visitor) OVERRIDE { CSSGroupingRule::trace(visitor); }
+ virtual void trace(Visitor* visitor) override { CSSGroupingRule::trace(visitor); }
private:
CSSSupportsRule(StyleRuleSupports*, CSSStyleSheet*);
« no previous file with comments | « Source/core/css/CSSStyleSheet.cpp ('k') | Source/core/css/CSSUnknownRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698