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

Unified Diff: Source/core/css/CSSUnknownRule.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/CSSSupportsRule.h ('k') | Source/core/css/CSSViewportRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSUnknownRule.h
diff --git a/Source/core/css/CSSUnknownRule.h b/Source/core/css/CSSUnknownRule.h
index b1d26046a8fb2a3b50a2d3b8beef80cf905253d3..00e4aa4afb4ef61ebbd25e500d759607e94dbb14 100644
--- a/Source/core/css/CSSUnknownRule.h
+++ b/Source/core/css/CSSUnknownRule.h
@@ -26,15 +26,15 @@
namespace blink {
-class CSSUnknownRule FINAL : public CSSRule {
+class CSSUnknownRule final : public CSSRule {
public:
CSSUnknownRule() : CSSRule(0) { }
virtual ~CSSUnknownRule() { }
- virtual CSSRule::Type type() const OVERRIDE { return UNKNOWN_RULE; }
- virtual String cssText() const OVERRIDE { return String(); }
- virtual void reattach(StyleRuleBase*) OVERRIDE { }
- virtual void trace(Visitor* visitor) OVERRIDE { CSSRule::trace(visitor); }
+ virtual CSSRule::Type type() const override { return UNKNOWN_RULE; }
+ virtual String cssText() const override { return String(); }
+ virtual void reattach(StyleRuleBase*) override { }
+ virtual void trace(Visitor* visitor) override { CSSRule::trace(visitor); }
};
} // namespace blink
« no previous file with comments | « Source/core/css/CSSSupportsRule.h ('k') | Source/core/css/CSSViewportRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698