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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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;
5
6 static final int SVG_EDGEMODE_NONE = 3;
7
8 static final int SVG_EDGEMODE_UNKNOWN = 0;
9
10 static final int SVG_EDGEMODE_WRAP = 2;
11
4 SVGAnimatedNumber bias; 12 SVGAnimatedNumber bias;
5 13
6 SVGAnimatedNumber divisor; 14 SVGAnimatedNumber divisor;
7 15
8 SVGAnimatedEnumeration edgeMode; 16 SVGAnimatedEnumeration edgeMode;
9 17
10 SVGAnimatedString in1; 18 SVGAnimatedString in1;
11 19
12 SVGAnimatedNumberList kernelMatrix; 20 SVGAnimatedNumberList kernelMatrix;
13 21
(...skipping 24 matching lines...) Expand all
38 SVGAnimatedLength y; 46 SVGAnimatedLength y;
39 47
40 // From SVGStylable 48 // From SVGStylable
41 49
42 SVGAnimatedString className; 50 SVGAnimatedString className;
43 51
44 CSSStyleDeclaration style; 52 CSSStyleDeclaration style;
45 53
46 CSSValue getPresentationAttribute(String name) native; 54 CSSValue getPresentationAttribute(String name) native;
47 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698