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

Unified Diff: Source/core/css/CSSKeyframesRule.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/CSSKeyframeRule.h ('k') | Source/core/css/CSSMatrix.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframesRule.h
diff --git a/Source/core/css/CSSKeyframesRule.h b/Source/core/css/CSSKeyframesRule.h
index 5f48e7a19483ccafdf669957703921b1e78472ce..dd89311f83239c00a4f90dd3d954d35503a0428e 100644
--- a/Source/core/css/CSSKeyframesRule.h
+++ b/Source/core/css/CSSKeyframesRule.h
@@ -37,7 +37,7 @@ class CSSRuleList;
class StyleKeyframe;
class CSSKeyframeRule;
-class StyleRuleKeyframes FINAL : public StyleRuleBase {
+class StyleRuleKeyframes final : public StyleRuleBase {
public:
static PassRefPtrWillBeRawPtr<StyleRuleKeyframes> create() { return adoptRefWillBeNoop(new StyleRuleKeyframes()); }
@@ -72,7 +72,7 @@ private:
DEFINE_STYLE_RULE_TYPE_CASTS(Keyframes);
-class CSSKeyframesRule FINAL : public CSSRule {
+class CSSKeyframesRule final : public CSSRule {
public:
static PassRefPtrWillBeRawPtr<CSSKeyframesRule> create(StyleRuleKeyframes* rule, CSSStyleSheet* sheet)
{
@@ -81,9 +81,9 @@ public:
virtual ~CSSKeyframesRule();
- virtual CSSRule::Type type() const OVERRIDE { return KEYFRAMES_RULE; }
- virtual String cssText() const OVERRIDE;
- virtual void reattach(StyleRuleBase*) OVERRIDE;
+ virtual CSSRule::Type type() const override { return KEYFRAMES_RULE; }
+ virtual String cssText() const override;
+ virtual void reattach(StyleRuleBase*) override;
String name() const { return m_keyframesRule->name(); }
void setName(const String&);
@@ -101,7 +101,7 @@ public:
bool isVendorPrefixed() const { return m_isPrefixed; }
void setVendorPrefixed(bool isPrefixed) { m_isPrefixed = isPrefixed; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
CSSKeyframesRule(StyleRuleKeyframes*, CSSStyleSheet* parent);
« no previous file with comments | « Source/core/css/CSSKeyframeRule.h ('k') | Source/core/css/CSSMatrix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698