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

Side by Side Diff: client/dom/generated/src/frog/SVGPathSegArcRel.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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 class SVGPathSegArcRelJS extends SVGPathSegJS implements SVGPathSegArcRel native "*SVGPathSegArcRel" { 2 class SVGPathSegArcRelJs extends SVGPathSegJs implements SVGPathSegArcRel native "*SVGPathSegArcRel" {
3 3
4 num get angle() native "return this.angle;"; 4 num get angle() native "return this.angle;";
5 5
6 void set angle(num value) native "this.angle = value;"; 6 void set angle(num value) native "this.angle = value;";
7 7
8 bool get largeArcFlag() native "return this.largeArcFlag;"; 8 bool get largeArcFlag() native "return this.largeArcFlag;";
9 9
10 void set largeArcFlag(bool value) native "this.largeArcFlag = value;"; 10 void set largeArcFlag(bool value) native "this.largeArcFlag = value;";
11 11
12 num get r1() native "return this.r1;"; 12 num get r1() native "return this.r1;";
13 13
14 void set r1(num value) native "this.r1 = value;"; 14 void set r1(num value) native "this.r1 = value;";
15 15
16 num get r2() native "return this.r2;"; 16 num get r2() native "return this.r2;";
17 17
18 void set r2(num value) native "this.r2 = value;"; 18 void set r2(num value) native "this.r2 = value;";
19 19
20 bool get sweepFlag() native "return this.sweepFlag;"; 20 bool get sweepFlag() native "return this.sweepFlag;";
21 21
22 void set sweepFlag(bool value) native "this.sweepFlag = value;"; 22 void set sweepFlag(bool value) native "this.sweepFlag = value;";
23 23
24 num get x() native "return this.x;"; 24 num get x() native "return this.x;";
25 25
26 void set x(num value) native "this.x = value;"; 26 void set x(num value) native "this.x = value;";
27 27
28 num get y() native "return this.y;"; 28 num get y() native "return this.y;";
29 29
30 void set y(num value) native "this.y = value;"; 30 void set y(num value) native "this.y = value;";
31 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGPathSegArcAbs.dart ('k') | client/dom/generated/src/frog/SVGPathSegClosePath.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698