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

Unified Diff: Source/core/svg/SVGString.h

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/svg/SVGStopElement.h ('k') | Source/core/svg/SVGStringList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGString.h
diff --git a/Source/core/svg/SVGString.h b/Source/core/svg/SVGString.h
index b8fa8e144392622bdf6d32b0fa01c8f85b5754c1..f686bd953f36b0b573ed3b8ba2c3d1d2475a4df5 100644
--- a/Source/core/svg/SVGString.h
+++ b/Source/core/svg/SVGString.h
@@ -54,17 +54,17 @@ public:
}
PassRefPtr<SVGString> clone() const { return create(m_value); }
- virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String& value) const OVERRIDE
+ virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String& value) const override
{
return create(value);
}
- virtual String valueAsString() const OVERRIDE { return m_value; }
+ virtual String valueAsString() const override { return m_value; }
void setValueAsString(const String& value, ExceptionState&) { m_value = value; }
- virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
- virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
- virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE;
+ virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
+ virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
+ virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) override;
const String& value() const { return m_value; }
void setValue(const String& value) { m_value = value; }
« no previous file with comments | « Source/core/svg/SVGStopElement.h ('k') | Source/core/svg/SVGStringList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698