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

Unified Diff: Source/core/svg/SVGPathSegListSource.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/SVGPathSegListSource.h
diff --git a/Source/core/svg/SVGPathSegListSource.h b/Source/core/svg/SVGPathSegListSource.h
index 7bbb41a2f52ea9593bc215561e6457cafab7f1e7..df09d099318a96b13606cc2be9e0f565a67cd3ad 100644
--- a/Source/core/svg/SVGPathSegListSource.h
+++ b/Source/core/svg/SVGPathSegListSource.h
@@ -31,9 +31,9 @@ public:
SVGPathSegListSource(SVGPathSegList::ConstIterator, SVGPathSegList::ConstIterator);
private:
- virtual bool hasMoreData() const override;
- virtual SVGPathSegType peekSegmentType() override;
- virtual PathSegmentData parseSegment() override;
+ bool hasMoreData() const override;
+ SVGPathSegType peekSegmentType() override;
+ PathSegmentData parseSegment() override;
SVGPathSegList::ConstIterator m_itCurrent;
SVGPathSegList::ConstIterator m_itEnd;

Powered by Google App Engine
This is Rietveld 408576698