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

Side by Side Diff: Source/core/svg/SVGPathSegCurvetoCubicAbs.h

Issue 18706003: Get rid of SVGPathSeg* special casing in the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoCubic.h ('k') | Source/core/svg/SVGPathSegCurvetoCubicRel.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org>
4 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
4 * 5 *
5 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
9 * 10 *
10 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 14 * Library General Public License for more details.
14 * 15 *
15 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
19 */ 20 */
20 21
21 #ifndef SVGPathSegClosePath_h 22 #ifndef SVGPathSegCurvetoCubicAbs_h
22 #define SVGPathSegClosePath_h 23 #define SVGPathSegCurvetoCubicAbs_h
23 24
24 #include "core/svg/SVGPathSegWithContext.h" 25 #include "core/svg/SVGPathSegCurvetoCubic.h"
25 26
26 namespace WebCore { 27 namespace WebCore {
27 28
28 class SVGPathSegClosePath : public SVGPathSegWithContext { 29 class SVGPathSegCurvetoCubicAbs : public SVGPathSegCurvetoCubic {
29 public: 30 public:
30 static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPa thSegRole role) 31 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
31 { 32 {
32 return adoptRef(new SVGPathSegClosePath(element, role)); 33 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y 1, x2, y2));
33 } 34 }
34 35
35 private: 36 private:
36 SVGPathSegClosePath(SVGPathElement* element, SVGPathSegRole role) 37 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, floa t x, float y, float x1, float y1, float x2, float y2)
37 : SVGPathSegWithContext(element, role) 38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
38 { 39 {
39 ScriptWrappable::init(this); 40 ScriptWrappable::init(this);
40 } 41 }
41 42
42 virtual unsigned short pathSegType() const { return PATHSEG_CLOSEPATH; } 43 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_CUBIC_AB S; }
43 virtual String pathSegTypeAsLetter() const { return "Z"; } 44 virtual String pathSegTypeAsLetter() const { return "C"; }
44 }; 45 };
45 46
46 } // namespace WebCore 47 } // namespace WebCore
47 48
48 #endif 49 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoCubic.h ('k') | Source/core/svg/SVGPathSegCurvetoCubicRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698