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/dom/generated/src/frog/SVGComponentTransferFunctionElement.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 1
2 class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV GComponentTransferFunctionElement native "*SVGComponentTransferFunctionElement" { 2 class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV GComponentTransferFunctionElement native "*SVGComponentTransferFunctionElement" {
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 _SVGAnimatedNumberJs get amplitude() native "return this.amplitude;"; 16 final _SVGAnimatedNumberJs amplitude;
17 17
18 _SVGAnimatedNumberJs get exponent() native "return this.exponent;"; 18 final _SVGAnimatedNumberJs exponent;
19 19
20 _SVGAnimatedNumberJs get intercept() native "return this.intercept;"; 20 final _SVGAnimatedNumberJs intercept;
21 21
22 _SVGAnimatedNumberJs get offset() native "return this.offset;"; 22 final _SVGAnimatedNumberJs offset;
23 23
24 _SVGAnimatedNumberJs get slope() native "return this.slope;"; 24 final _SVGAnimatedNumberJs slope;
25 25
26 _SVGAnimatedNumberListJs get tableValues() native "return this.tableValues;"; 26 final _SVGAnimatedNumberListJs tableValues;
27 27
28 _SVGAnimatedEnumerationJs get type() native "return this.type;"; 28 final _SVGAnimatedEnumerationJs type;
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698