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

Unified Diff: Source/core/svg/SVGPathSegListSource.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/SVGPathSegListBuilder.h ('k') | Source/core/svg/SVGPathSegListTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegListSource.h
diff --git a/Source/core/svg/SVGPathSegListSource.h b/Source/core/svg/SVGPathSegListSource.h
index df249451d6efc34bca6e87d6791513e1ac867ae6..0fb6492697fa9164e59f9a2cc6d59af11a874c1a 100644
--- a/Source/core/svg/SVGPathSegListSource.h
+++ b/Source/core/svg/SVGPathSegListSource.h
@@ -29,25 +29,25 @@
namespace blink {
-class SVGPathSegListSource FINAL : public SVGPathSource {
+class SVGPathSegListSource final : public SVGPathSource {
public:
SVGPathSegListSource(SVGPathSegList::ConstIterator, SVGPathSegList::ConstIterator);
private:
- virtual bool hasMoreData() const OVERRIDE;
- virtual bool moveToNextToken() OVERRIDE { return true; }
- virtual bool parseSVGSegmentType(SVGPathSegType&) OVERRIDE;
- virtual SVGPathSegType nextCommand(SVGPathSegType) OVERRIDE;
-
- virtual bool parseMoveToSegment(FloatPoint&) OVERRIDE;
- virtual bool parseLineToSegment(FloatPoint&) OVERRIDE;
- virtual bool parseLineToHorizontalSegment(float&) OVERRIDE;
- virtual bool parseLineToVerticalSegment(float&) OVERRIDE;
- virtual bool parseCurveToCubicSegment(FloatPoint&, FloatPoint&, FloatPoint&) OVERRIDE;
- virtual bool parseCurveToCubicSmoothSegment(FloatPoint&, FloatPoint&) OVERRIDE;
- virtual bool parseCurveToQuadraticSegment(FloatPoint&, FloatPoint&) OVERRIDE;
- virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&) OVERRIDE;
- virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPoint&) OVERRIDE;
+ virtual bool hasMoreData() const override;
+ virtual bool moveToNextToken() override { return true; }
+ virtual bool parseSVGSegmentType(SVGPathSegType&) override;
+ virtual SVGPathSegType nextCommand(SVGPathSegType) override;
+
+ virtual bool parseMoveToSegment(FloatPoint&) override;
+ virtual bool parseLineToSegment(FloatPoint&) override;
+ virtual bool parseLineToHorizontalSegment(float&) override;
+ virtual bool parseLineToVerticalSegment(float&) override;
+ virtual bool parseCurveToCubicSegment(FloatPoint&, FloatPoint&, FloatPoint&) override;
+ virtual bool parseCurveToCubicSmoothSegment(FloatPoint&, FloatPoint&) override;
+ virtual bool parseCurveToQuadraticSegment(FloatPoint&, FloatPoint&) override;
+ virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&) override;
+ virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPoint&) override;
RefPtr<SVGPathSeg> m_segment;
SVGPathSegList::ConstIterator m_itCurrent;
« no previous file with comments | « Source/core/svg/SVGPathSegListBuilder.h ('k') | Source/core/svg/SVGPathSegListTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698