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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 SVGFEBlendElementJs extends SVGElementJs implements SVGFEBlendElement nati ve "*SVGFEBlendElement" { 2 class _SVGFEBlendElementJs extends _SVGElementJs implements SVGFEBlendElement na tive "*SVGFEBlendElement" {
3 3
4 static final int SVG_FEBLEND_MODE_DARKEN = 4; 4 static final int SVG_FEBLEND_MODE_DARKEN = 4;
5 5
6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; 6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5;
7 7
8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; 8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2;
9 9
10 static final int SVG_FEBLEND_MODE_NORMAL = 1; 10 static final int SVG_FEBLEND_MODE_NORMAL = 1;
11 11
12 static final int SVG_FEBLEND_MODE_SCREEN = 3; 12 static final int SVG_FEBLEND_MODE_SCREEN = 3;
13 13
14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; 14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0;
15 15
16 SVGAnimatedStringJs get in1() native "return this.in1;"; 16 _SVGAnimatedStringJs get in1() native "return this.in1;";
17 17
18 SVGAnimatedStringJs get in2() native "return this.in2;"; 18 _SVGAnimatedStringJs get in2() native "return this.in2;";
19 19
20 SVGAnimatedEnumerationJs get mode() native "return this.mode;"; 20 _SVGAnimatedEnumerationJs get mode() native "return this.mode;";
21 21
22 // From SVGFilterPrimitiveStandardAttributes 22 // From SVGFilterPrimitiveStandardAttributes
23 23
24 SVGAnimatedLengthJs get height() native "return this.height;"; 24 _SVGAnimatedLengthJs get height() native "return this.height;";
25 25
26 SVGAnimatedStringJs get result() native "return this.result;"; 26 _SVGAnimatedStringJs get result() native "return this.result;";
27 27
28 SVGAnimatedLengthJs get width() native "return this.width;"; 28 _SVGAnimatedLengthJs get width() native "return this.width;";
29 29
30 SVGAnimatedLengthJs get x() native "return this.x;"; 30 _SVGAnimatedLengthJs get x() native "return this.x;";
31 31
32 SVGAnimatedLengthJs get y() native "return this.y;"; 32 _SVGAnimatedLengthJs get y() native "return this.y;";
33 33
34 // From SVGStylable 34 // From SVGStylable
35 35
36 SVGAnimatedStringJs get className() native "return this.className;"; 36 _SVGAnimatedStringJs get className() native "return this.className;";
37 37
38 CSSStyleDeclarationJs get style() native "return this.style;"; 38 _CSSStyleDeclarationJs get style() native "return this.style;";
39 39
40 CSSValueJs getPresentationAttribute(String name) native; 40 _CSSValueJs getPresentationAttribute(String name) native;
41 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698