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

Side by Side Diff: client/dom/generated/src/frog/SVGFECompositeElement.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 SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" { 2 class SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" {
3 3
4 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
5
6 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
7
8 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2;
9
10 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
11
12 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
13
14 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
15
16 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
17
4 SVGAnimatedString in1; 18 SVGAnimatedString in1;
5 19
6 SVGAnimatedString in2; 20 SVGAnimatedString in2;
7 21
8 SVGAnimatedNumber k1; 22 SVGAnimatedNumber k1;
9 23
10 SVGAnimatedNumber k2; 24 SVGAnimatedNumber k2;
11 25
12 SVGAnimatedNumber k3; 26 SVGAnimatedNumber k3;
13 27
(...skipping 14 matching lines...) Expand all
28 SVGAnimatedLength y; 42 SVGAnimatedLength y;
29 43
30 // From SVGStylable 44 // From SVGStylable
31 45
32 SVGAnimatedString className; 46 SVGAnimatedString className;
33 47
34 CSSStyleDeclaration style; 48 CSSStyleDeclaration style;
35 49
36 CSSValue getPresentationAttribute(String name) native; 50 CSSValue getPresentationAttribute(String name) native;
37 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698