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

Unified Diff: Source/core/css/CSSKeyframeRule.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/CSSImportRule.h ('k') | Source/core/css/CSSKeyframesRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframeRule.h
diff --git a/Source/core/css/CSSKeyframeRule.h b/Source/core/css/CSSKeyframeRule.h
index eae56a625f438fe6364f0537eaa4def37022d209..0c31be8039194825bad51115b9e0fe872db47f90 100644
--- a/Source/core/css/CSSKeyframeRule.h
+++ b/Source/core/css/CSSKeyframeRule.h
@@ -37,7 +37,7 @@ class MutableStylePropertySet;
class StylePropertySet;
class StyleRuleCSSStyleDeclaration;
-class StyleKeyframe FINAL : public RefCountedWillBeGarbageCollectedFinalized<StyleKeyframe> {
+class StyleKeyframe final : public RefCountedWillBeGarbageCollectedFinalized<StyleKeyframe> {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
static PassRefPtrWillBeRawPtr<StyleKeyframe> create()
@@ -74,20 +74,20 @@ private:
mutable OwnPtr<Vector<double> > m_keys;
};
-class CSSKeyframeRule FINAL : public CSSRule {
+class CSSKeyframeRule final : public CSSRule {
public:
virtual ~CSSKeyframeRule();
- virtual CSSRule::Type type() const OVERRIDE { return KEYFRAME_RULE; }
- virtual String cssText() const OVERRIDE { return m_keyframe->cssText(); }
- virtual void reattach(StyleRuleBase*) OVERRIDE;
+ virtual CSSRule::Type type() const override { return KEYFRAME_RULE; }
+ virtual String cssText() const override { return m_keyframe->cssText(); }
+ virtual void reattach(StyleRuleBase*) override;
String keyText() const { return m_keyframe->keyText(); }
void setKeyText(const String& s) { m_keyframe->setKeyText(s); }
CSSStyleDeclaration* style() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
CSSKeyframeRule(StyleKeyframe*, CSSKeyframesRule* parent);
« no previous file with comments | « Source/core/css/CSSImportRule.h ('k') | Source/core/css/CSSKeyframesRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698