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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
Index: Source/core/svg/SVGPathByteStreamBuilder.h
diff --git a/Source/core/svg/SVGPathByteStreamBuilder.h b/Source/core/svg/SVGPathByteStreamBuilder.h
index 4176d4f3b7dd7a22f92d080226341dad490a200a..94cb937366856877711549988918200f68b19bb1 100644
--- a/Source/core/svg/SVGPathByteStreamBuilder.h
+++ b/Source/core/svg/SVGPathByteStreamBuilder.h
@@ -31,10 +31,10 @@ public:
SVGPathByteStreamBuilder(SVGPathByteStream&);
private:
- virtual void incrementPathSegmentCount() override { }
- virtual bool continueConsuming() override { return true; }
+ void incrementPathSegmentCount() override { }
+ bool continueConsuming() override { return true; }
- virtual void emitSegment(const PathSegmentData&) override;
+ void emitSegment(const PathSegmentData&) override;
SVGPathByteStream& m_byteStream;
};

Powered by Google App Engine
This is Rietveld 408576698