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

Unified Diff: Source/core/svg/SVGPathSegLinetoVerticalRel.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/SVGPathSegLinetoVerticalAbs.h ('k') | Source/core/svg/SVGPathSegList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegLinetoVerticalRel.h
diff --git a/Source/core/svg/SVGPathSegLinetoVerticalRel.h b/Source/core/svg/SVGPathSegLinetoVerticalRel.h
index 0b28de8c62a64246f09d9b805bb6e9918bfbe1fc..00adce8725a333a1c8e3c9edec0b199649237a16 100644
--- a/Source/core/svg/SVGPathSegLinetoVerticalRel.h
+++ b/Source/core/svg/SVGPathSegLinetoVerticalRel.h
@@ -28,14 +28,14 @@ namespace blink {
class SVGPathSegLinetoVerticalRel FINAL : public SVGPathSegLinetoVertical {
public:
- static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y)
+ static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, float y)
{
- return adoptRef(new SVGPathSegLinetoVerticalRel(element, role, y));
+ return adoptRef(new SVGPathSegLinetoVerticalRel(element, y));
}
private:
- SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y)
- : SVGPathSegLinetoVertical(element, role, y)
+ SVGPathSegLinetoVerticalRel(SVGPathElement* element, float y)
+ : SVGPathSegLinetoVertical(element, y)
{
ScriptWrappable::init(this);
}
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoVerticalAbs.h ('k') | Source/core/svg/SVGPathSegList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698