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

Unified Diff: Source/core/svg/SVGPathSegListBuilder.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/SVGPathSegListBuilder.h
diff --git a/Source/core/svg/SVGPathSegListBuilder.h b/Source/core/svg/SVGPathSegListBuilder.h
index 235fc45dfa6e090da80845a77c80ab7e0db15a66..d0bf7d4c64919a67fc37e261b85aabd9261df443 100644
--- a/Source/core/svg/SVGPathSegListBuilder.h
+++ b/Source/core/svg/SVGPathSegListBuilder.h
@@ -37,10 +37,10 @@ public:
SVGPathSegListBuilder(SVGPathElement*, PassRefPtrWillBeRawPtr<SVGPathSegList>);
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;
RawPtrWillBeMember<SVGPathElement> m_pathElement;
RefPtrWillBeMember<SVGPathSegList> m_pathSegList;

Powered by Google App Engine
This is Rietveld 408576698