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

Side by Side Diff: client/dom/generated/src/frog/SVGFEConvolveMatrixElement.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 SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix Element" { 2 class SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix Element" {
3 3
4 static final int SVG_EDGEMODE_DUPLICATE = 1; 4 static final int SVG_EDGEMODE_DUPLICATE = 1;
5 5
6 static final int SVG_EDGEMODE_NONE = 3; 6 static final int SVG_EDGEMODE_NONE = 3;
7 7
8 static final int SVG_EDGEMODE_UNKNOWN = 0; 8 static final int SVG_EDGEMODE_UNKNOWN = 0;
9 9
10 static final int SVG_EDGEMODE_WRAP = 2; 10 static final int SVG_EDGEMODE_WRAP = 2;
11 11
12 SVGAnimatedNumber bias; 12 SVGAnimatedNumber get bias() native "return this.bias;";
13 13
14 SVGAnimatedNumber divisor; 14 SVGAnimatedNumber get divisor() native "return this.divisor;";
15 15
16 SVGAnimatedEnumeration edgeMode; 16 SVGAnimatedEnumeration get edgeMode() native "return this.edgeMode;";
17 17
18 SVGAnimatedString in1; 18 SVGAnimatedString get in1() native "return this.in1;";
19 19
20 SVGAnimatedNumberList kernelMatrix; 20 SVGAnimatedNumberList get kernelMatrix() native "return this.kernelMatrix;";
21 21
22 SVGAnimatedNumber kernelUnitLengthX; 22 SVGAnimatedNumber get kernelUnitLengthX() native "return this.kernelUnitLength X;";
23 23
24 SVGAnimatedNumber kernelUnitLengthY; 24 SVGAnimatedNumber get kernelUnitLengthY() native "return this.kernelUnitLength Y;";
25 25
26 SVGAnimatedInteger orderX; 26 SVGAnimatedInteger get orderX() native "return this.orderX;";
27 27
28 SVGAnimatedInteger orderY; 28 SVGAnimatedInteger get orderY() native "return this.orderY;";
29 29
30 SVGAnimatedBoolean preserveAlpha; 30 SVGAnimatedBoolean get preserveAlpha() native "return this.preserveAlpha;";
31 31
32 SVGAnimatedInteger targetX; 32 SVGAnimatedInteger get targetX() native "return this.targetX;";
33 33
34 SVGAnimatedInteger targetY; 34 SVGAnimatedInteger get targetY() native "return this.targetY;";
35 35
36 // From SVGFilterPrimitiveStandardAttributes 36 // From SVGFilterPrimitiveStandardAttributes
37 37
38 SVGAnimatedLength height; 38 SVGAnimatedLength get height() native "return this.height;";
39 39
40 SVGAnimatedString result; 40 SVGAnimatedString get result() native "return this.result;";
41 41
42 SVGAnimatedLength width; 42 SVGAnimatedLength get width() native "return this.width;";
43 43
44 SVGAnimatedLength x; 44 SVGAnimatedLength get x() native "return this.x;";
45 45
46 SVGAnimatedLength y; 46 SVGAnimatedLength get y() native "return this.y;";
47 47
48 // From SVGStylable 48 // From SVGStylable
49 49
50 SVGAnimatedString className; 50 SVGAnimatedString get className() native "return this.className;";
51 51
52 CSSStyleDeclaration style; 52 CSSStyleDeclaration get style() native "return this.style;";
53 53
54 CSSValue getPresentationAttribute(String name) native; 54 CSSValue getPresentationAttribute(String name) native;
55 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698