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

Side by Side Diff: client/html/generated/html/frog/SVGPathElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _SVGPathElementImpl extends _SVGElementImpl implements SVGPathElement nati ve "*SVGPathElement" {
3
4 final _SVGPathSegListImpl animatedNormalizedPathSegList;
5
6 final _SVGPathSegListImpl animatedPathSegList;
7
8 final _SVGPathSegListImpl normalizedPathSegList;
9
10 final _SVGAnimatedNumberImpl pathLength;
11
12 final _SVGPathSegListImpl pathSegList;
13
14 _SVGPathSegArcAbsImpl createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native;
15
16 _SVGPathSegArcRelImpl createSVGPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) native;
17
18 _SVGPathSegClosePathImpl createSVGPathSegClosePath() native;
19
20 _SVGPathSegCurvetoCubicAbsImpl createSVGPathSegCurvetoCubicAbs(num x, num y, n um x1, num y1, num x2, num y2) native;
21
22 _SVGPathSegCurvetoCubicRelImpl createSVGPathSegCurvetoCubicRel(num x, num y, n um x1, num y1, num x2, num y2) native;
23
24 _SVGPathSegCurvetoCubicSmoothAbsImpl createSVGPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native;
25
26 _SVGPathSegCurvetoCubicSmoothRelImpl createSVGPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native;
27
28 _SVGPathSegCurvetoQuadraticAbsImpl createSVGPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) native;
29
30 _SVGPathSegCurvetoQuadraticRelImpl createSVGPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) native;
31
32 _SVGPathSegCurvetoQuadraticSmoothAbsImpl createSVGPathSegCurvetoQuadraticSmoot hAbs(num x, num y) native;
33
34 _SVGPathSegCurvetoQuadraticSmoothRelImpl createSVGPathSegCurvetoQuadraticSmoot hRel(num x, num y) native;
35
36 _SVGPathSegLinetoAbsImpl createSVGPathSegLinetoAbs(num x, num y) native;
37
38 _SVGPathSegLinetoHorizontalAbsImpl createSVGPathSegLinetoHorizontalAbs(num x) native;
39
40 _SVGPathSegLinetoHorizontalRelImpl createSVGPathSegLinetoHorizontalRel(num x) native;
41
42 _SVGPathSegLinetoRelImpl createSVGPathSegLinetoRel(num x, num y) native;
43
44 _SVGPathSegLinetoVerticalAbsImpl createSVGPathSegLinetoVerticalAbs(num y) nati ve;
45
46 _SVGPathSegLinetoVerticalRelImpl createSVGPathSegLinetoVerticalRel(num y) nati ve;
47
48 _SVGPathSegMovetoAbsImpl createSVGPathSegMovetoAbs(num x, num y) native;
49
50 _SVGPathSegMovetoRelImpl createSVGPathSegMovetoRel(num x, num y) native;
51
52 int getPathSegAtLength(num distance) native;
53
54 _SVGPointImpl getPointAtLength(num distance) native;
55
56 num getTotalLength() native;
57
58 // From SVGTests
59
60 final _SVGStringListImpl requiredExtensions;
61
62 final _SVGStringListImpl requiredFeatures;
63
64 final _SVGStringListImpl systemLanguage;
65
66 bool hasExtension(String extension) native;
67
68 // From SVGLangSpace
69
70 String xmllang;
71
72 String xmlspace;
73
74 // From SVGExternalResourcesRequired
75
76 final _SVGAnimatedBooleanImpl externalResourcesRequired;
77
78 // From SVGStylable
79
80 _SVGAnimatedStringImpl get _className() native "return this.className;";
81
82 // Use implementation from Element.
83 // final _CSSStyleDeclarationImpl style;
84
85 _CSSValueImpl getPresentationAttribute(String name) native;
86
87 // From SVGTransformable
88
89 final _SVGAnimatedTransformListImpl transform;
90
91 // From SVGLocatable
92
93 final _SVGElementImpl farthestViewportElement;
94
95 final _SVGElementImpl nearestViewportElement;
96
97 _SVGRectImpl getBBox() native;
98
99 _SVGMatrixImpl getCTM() native;
100
101 _SVGMatrixImpl getScreenCTM() native;
102
103 _SVGMatrixImpl getTransformToElement(_SVGElementImpl element) native;
104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698