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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone ntTransferFunctionElement" { 2 class SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone ntTransferFunctionElement" {
3 3
4 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; 4 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3;
5 5
6 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; 6 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5;
7 7
8 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; 8 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;
9 9
10 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; 10 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4;
11 11
12 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; 12 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2;
13 13
14 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; 14 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
15 15
16 SVGAnimatedNumber amplitude; 16 SVGAnimatedNumber get amplitude() native "return this.amplitude;";
17 17
18 SVGAnimatedNumber exponent; 18 SVGAnimatedNumber get exponent() native "return this.exponent;";
19 19
20 SVGAnimatedNumber intercept; 20 SVGAnimatedNumber get intercept() native "return this.intercept;";
21 21
22 SVGAnimatedNumber offset; 22 SVGAnimatedNumber get offset() native "return this.offset;";
23 23
24 SVGAnimatedNumber slope; 24 SVGAnimatedNumber get slope() native "return this.slope;";
25 25
26 SVGAnimatedNumberList tableValues; 26 SVGAnimatedNumberList get tableValues() native "return this.tableValues;";
27 27
28 SVGAnimatedEnumeration type; 28 SVGAnimatedEnumeration get type() native "return this.type;";
29 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGColor.dart ('k') | client/dom/generated/src/frog/SVGCursorElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698