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

Side by Side Diff: client/dom/generated/src/interface/SVGPathElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal ResourcesRequired, SVGStylable, SVGTransformable { 7 interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternal ResourcesRequired, SVGStylable, SVGTransformable {
8 8
9 SVGPathSegList get animatedNormalizedPathSegList(); 9 final SVGPathSegList animatedNormalizedPathSegList;
10 10
11 SVGPathSegList get animatedPathSegList(); 11 final SVGPathSegList animatedPathSegList;
12 12
13 SVGPathSegList get normalizedPathSegList(); 13 final SVGPathSegList normalizedPathSegList;
14 14
15 SVGAnimatedNumber get pathLength(); 15 final SVGAnimatedNumber pathLength;
16 16
17 SVGPathSegList get pathSegList(); 17 final SVGPathSegList pathSegList;
18 18
19 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag); 19 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag);
20 20
21 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag); 21 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl e, bool largeArcFlag, bool sweepFlag);
22 22
23 SVGPathSegClosePath createSVGPathSegClosePath(); 23 SVGPathSegClosePath createSVGPathSegClosePath();
24 24
25 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1 , num y1, num x2, num y2); 25 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1 , num y1, num x2, num y2);
26 26
27 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1 , num y1, num x2, num y2); 27 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1 , num y1, num x2, num y2);
(...skipping 25 matching lines...) Expand all
53 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y); 53 SVGPathSegMovetoAbs createSVGPathSegMovetoAbs(num x, num y);
54 54
55 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y); 55 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y);
56 56
57 int getPathSegAtLength(num distance); 57 int getPathSegAtLength(num distance);
58 58
59 SVGPoint getPointAtLength(num distance); 59 SVGPoint getPointAtLength(num distance);
60 60
61 num getTotalLength(); 61 num getTotalLength();
62 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698