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

Side by Side Diff: Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.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
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, 2008 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 SVGPathSegCurvetoQuadraticSmooth_h 22 #ifndef SVGPathSegCurvetoQuadraticSmoothAbs_h
22 #define SVGPathSegCurvetoQuadraticSmooth_h 23 #define SVGPathSegCurvetoQuadraticSmoothAbs_h
23 24
24 #include "core/svg/SVGPathSegWithContext.h" 25 #include "core/svg/SVGPathSegWithContext.h"
25 26
26 namespace WebCore { 27 namespace WebCore {
27 28
28 class SVGPathSegCurvetoQuadraticSmoothAbs : public SVGPathSegSingleCoordinate { 29 class SVGPathSegCurvetoQuadraticSmoothAbs : public SVGPathSegSingleCoordinate {
29 public: 30 public:
30 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement * element, SVGPathSegRole role, float x, float y) 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement * element, SVGPathSegRole role, float x, float y)
31 { 32 {
32 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x , y)); 33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x , y));
33 } 34 }
34 35
35 private: 36 private:
36 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) 37 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
37 : SVGPathSegSingleCoordinate(element, role, x, y) 38 : SVGPathSegSingleCoordinate(element, role, x, y)
38 { 39 {
39 ScriptWrappable::init(this); 40 ScriptWrappable::init(this);
40 } 41 }
41 42
42 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATI C_SMOOTH_ABS; } 43 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATI C_SMOOTH_ABS; }
43 virtual String pathSegTypeAsLetter() const { return "T"; } 44 virtual String pathSegTypeAsLetter() const { return "T"; }
44 }; 45 };
45 46
46 class SVGPathSegCurvetoQuadraticSmoothRel : public SVGPathSegSingleCoordinate {
47 public:
48 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement * element, SVGPathSegRole role, float x, float y)
49 {
50 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x , y));
51 }
52
53 private:
54 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
55 : SVGPathSegSingleCoordinate(element, role, x, y)
56 {
57 ScriptWrappable::init(this);
58 }
59
60 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATI C_SMOOTH_REL; }
61 virtual String pathSegTypeAsLetter() const { return "t"; }
62 };
63
64 } // namespace WebCore 47 } // namespace WebCore
65 48
66 #endif 49 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoQuadraticSmooth.h ('k') | Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698