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

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

Issue 1011983003: Drop SVGPathSegWithContext (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/SVGPathSegArc.h ('k') | Source/core/svg/SVGPathSegCurvetoCubic.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegClosePath.h
diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h
index 12b1eb7afb462e2378e67f37884527575946a854..6b844f0fd00101a9d94781f27abef9e3cf64b392 100644
--- a/Source/core/svg/SVGPathSegClosePath.h
+++ b/Source/core/svg/SVGPathSegClosePath.h
@@ -21,11 +21,11 @@
#ifndef SVGPathSegClosePath_h
#define SVGPathSegClosePath_h
-#include "core/svg/SVGPathSegWithContext.h"
+#include "core/svg/SVGPathSeg.h"
namespace blink {
-class SVGPathSegClosePath final : public SVGPathSegWithContext {
+class SVGPathSegClosePath final : public SVGPathSeg {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<SVGPathSegClosePath> create(SVGPathElement* element)
@@ -35,7 +35,7 @@ public:
private:
SVGPathSegClosePath(SVGPathElement* element)
- : SVGPathSegWithContext(element) { }
+ : SVGPathSeg(element) { }
virtual unsigned short pathSegType() const override { return PATHSEG_CLOSEPATH; }
virtual String pathSegTypeAsLetter() const override { return "Z"; }
« no previous file with comments | « Source/core/svg/SVGPathSegArc.h ('k') | Source/core/svg/SVGPathSegCurvetoCubic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698