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

Unified Diff: Source/core/svg/SVGPathSegArc.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/SVGPathSeg.h ('k') | Source/core/svg/SVGPathSegClosePath.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegArc.h
diff --git a/Source/core/svg/SVGPathSegArc.h b/Source/core/svg/SVGPathSegArc.h
index 5d78eda8bb368fcdee05087c457a863a888668c8..0bc97213a4f4a6afe16e1931487c4b33edfc3dff 100644
--- a/Source/core/svg/SVGPathSegArc.h
+++ b/Source/core/svg/SVGPathSegArc.h
@@ -21,14 +21,14 @@
#ifndef SVGPathSegArc_h
#define SVGPathSegArc_h
-#include "core/svg/SVGPathSegWithContext.h"
+#include "core/svg/SVGPathSeg.h"
namespace blink {
-class SVGPathSegArc : public SVGPathSegWithContext {
+class SVGPathSegArc : public SVGPathSeg {
public:
SVGPathSegArc(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
- : SVGPathSegWithContext(element)
+ : SVGPathSeg(element)
, m_x(x)
, m_y(y)
, m_r1(r1)
« no previous file with comments | « Source/core/svg/SVGPathSeg.h ('k') | Source/core/svg/SVGPathSegClosePath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698