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

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

Issue 456763002: Get rid of SVGPathSegRole (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/SVGPathSegLinetoVertical.h ('k') | Source/core/svg/SVGPathSegLinetoVerticalRel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegLinetoVerticalAbs.h
diff --git a/Source/core/svg/SVGPathSegLinetoVerticalAbs.h b/Source/core/svg/SVGPathSegLinetoVerticalAbs.h
index 906a4264b3e40566a8d5b94e70647e31cfbe865d..1da3941f409d518c1bfe5446d06ea10aae40f26e 100644
--- a/Source/core/svg/SVGPathSegLinetoVerticalAbs.h
+++ b/Source/core/svg/SVGPathSegLinetoVerticalAbs.h
@@ -28,14 +28,14 @@ namespace blink {
class SVGPathSegLinetoVerticalAbs FINAL : public SVGPathSegLinetoVertical {
public:
- static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y)
+ static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, float y)
{
- return adoptRef(new SVGPathSegLinetoVerticalAbs(element, role, y));
+ return adoptRef(new SVGPathSegLinetoVerticalAbs(element, y));
}
private:
- SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y)
- : SVGPathSegLinetoVertical(element, role, y)
+ SVGPathSegLinetoVerticalAbs(SVGPathElement* element, float y)
+ : SVGPathSegLinetoVertical(element, y)
{
ScriptWrappable::init(this);
}
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoVertical.h ('k') | Source/core/svg/SVGPathSegLinetoVerticalRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698