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

Unified Diff: Source/core/svg/SVGPathByteStreamSource.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/SVGPathByteStreamBuilder.h ('k') | Source/core/svg/SVGPathElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathByteStreamSource.h
diff --git a/Source/core/svg/SVGPathByteStreamSource.h b/Source/core/svg/SVGPathByteStreamSource.h
index b01c94afc83f46a6fee722dbf9041978f9f692d9..e189df586587d9c4af77628682dbc497e49d837c 100644
--- a/Source/core/svg/SVGPathByteStreamSource.h
+++ b/Source/core/svg/SVGPathByteStreamSource.h
@@ -27,25 +27,25 @@
namespace blink {
-class SVGPathByteStreamSource FINAL : public SVGPathSource {
+class SVGPathByteStreamSource final : public SVGPathSource {
public:
explicit SVGPathByteStreamSource(const SVGPathByteStream*);
private:
- virtual bool hasMoreData() const OVERRIDE;
- virtual bool moveToNextToken() OVERRIDE { return true; }
- virtual bool parseSVGSegmentType(SVGPathSegType&) OVERRIDE;
- virtual SVGPathSegType nextCommand(SVGPathSegType) 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;
+ 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;
#if COMPILER(MSVC)
#pragma warning(disable: 4701)
« no previous file with comments | « Source/core/svg/SVGPathByteStreamBuilder.h ('k') | Source/core/svg/SVGPathElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698