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

Side by Side Diff: client/dom/generated/src/frog/SVGFEConvolveMatrixElement.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 SVGFEConvolveMatrixElementJS extends SVGElementJS implements SVGFEConvolve MatrixElement native "*SVGFEConvolveMatrixElement" { 2 class SVGFEConvolveMatrixElementJs extends SVGElementJs implements SVGFEConvolve MatrixElement native "*SVGFEConvolveMatrixElement" {
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 SVGAnimatedNumberJS get bias() native "return this.bias;"; 12 SVGAnimatedNumberJs get bias() native "return this.bias;";
13 13
14 SVGAnimatedNumberJS get divisor() native "return this.divisor;"; 14 SVGAnimatedNumberJs get divisor() native "return this.divisor;";
15 15
16 SVGAnimatedEnumerationJS get edgeMode() native "return this.edgeMode;"; 16 SVGAnimatedEnumerationJs get edgeMode() native "return this.edgeMode;";
17 17
18 SVGAnimatedStringJS get in1() native "return this.in1;"; 18 SVGAnimatedStringJs get in1() native "return this.in1;";
19 19
20 SVGAnimatedNumberListJS get kernelMatrix() native "return this.kernelMatrix;"; 20 SVGAnimatedNumberListJs get kernelMatrix() native "return this.kernelMatrix;";
21 21
22 SVGAnimatedNumberJS get kernelUnitLengthX() native "return this.kernelUnitLeng thX;"; 22 SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLeng thX;";
23 23
24 SVGAnimatedNumberJS get kernelUnitLengthY() native "return this.kernelUnitLeng thY;"; 24 SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLeng thY;";
25 25
26 SVGAnimatedIntegerJS get orderX() native "return this.orderX;"; 26 SVGAnimatedIntegerJs get orderX() native "return this.orderX;";
27 27
28 SVGAnimatedIntegerJS get orderY() native "return this.orderY;"; 28 SVGAnimatedIntegerJs get orderY() native "return this.orderY;";
29 29
30 SVGAnimatedBooleanJS get preserveAlpha() native "return this.preserveAlpha;"; 30 SVGAnimatedBooleanJs get preserveAlpha() native "return this.preserveAlpha;";
31 31
32 SVGAnimatedIntegerJS get targetX() native "return this.targetX;"; 32 SVGAnimatedIntegerJs get targetX() native "return this.targetX;";
33 33
34 SVGAnimatedIntegerJS get targetY() native "return this.targetY;"; 34 SVGAnimatedIntegerJs get targetY() native "return this.targetY;";
35 35
36 // From SVGFilterPrimitiveStandardAttributes 36 // From SVGFilterPrimitiveStandardAttributes
37 37
38 SVGAnimatedLengthJS get height() native "return this.height;"; 38 SVGAnimatedLengthJs get height() native "return this.height;";
39 39
40 SVGAnimatedStringJS get result() native "return this.result;"; 40 SVGAnimatedStringJs get result() native "return this.result;";
41 41
42 SVGAnimatedLengthJS get width() native "return this.width;"; 42 SVGAnimatedLengthJs get width() native "return this.width;";
43 43
44 SVGAnimatedLengthJS get x() native "return this.x;"; 44 SVGAnimatedLengthJs get x() native "return this.x;";
45 45
46 SVGAnimatedLengthJS get y() native "return this.y;"; 46 SVGAnimatedLengthJs get y() native "return this.y;";
47 47
48 // From SVGStylable 48 // From SVGStylable
49 49
50 SVGAnimatedStringJS get className() native "return this.className;"; 50 SVGAnimatedStringJs get className() native "return this.className;";
51 51
52 CSSStyleDeclarationJS get style() native "return this.style;"; 52 CSSStyleDeclarationJs get style() native "return this.style;";
53 53
54 CSSValueJS getPresentationAttribute(String name) native; 54 CSSValueJs getPresentationAttribute(String name) native;
55 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698