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

Side by Side Diff: client/dom/generated/src/frog/SVGFEMorphologyElement.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 SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement" { 2 class SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement" {
3 3
4 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
5
6 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
7
8 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
9
4 SVGAnimatedString in1; 10 SVGAnimatedString in1;
5 11
6 SVGAnimatedEnumeration operator; 12 SVGAnimatedEnumeration operator;
7 13
8 SVGAnimatedNumber radiusX; 14 SVGAnimatedNumber radiusX;
9 15
10 SVGAnimatedNumber radiusY; 16 SVGAnimatedNumber radiusY;
11 17
12 void setRadius(num radiusX, num radiusY) native; 18 void setRadius(num radiusX, num radiusY) native;
13 19
(...skipping 10 matching lines...) Expand all
24 SVGAnimatedLength y; 30 SVGAnimatedLength y;
25 31
26 // From SVGStylable 32 // From SVGStylable
27 33
28 SVGAnimatedString className; 34 SVGAnimatedString className;
29 35
30 CSSStyleDeclaration style; 36 CSSStyleDeclaration style;
31 37
32 CSSValue getPresentationAttribute(String name) native; 38 CSSValue getPresentationAttribute(String name) native;
33 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698