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

Unified Diff: Source/core/svg/SVGPathStringBuilder.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/SVGPathStringBuilder.h
diff --git a/Source/core/svg/SVGPathStringBuilder.h b/Source/core/svg/SVGPathStringBuilder.h
index 5836f25b35ffa24914ed8eaf9ca5b8aad8ba0ad6..aa032481d1baa64f227f519592fbe1e8e03e450f 100644
--- a/Source/core/svg/SVGPathStringBuilder.h
+++ b/Source/core/svg/SVGPathStringBuilder.h
@@ -30,10 +30,10 @@ public:
String result();
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;
StringBuilder m_stringBuilder;
};

Powered by Google App Engine
This is Rietveld 408576698