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

Side by Side Diff: client/dom/generated/src/frog/SVGLength.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 SVGLengthJs extends DOMTypeJs implements SVGLength native "*SVGLength" { 2 class _SVGLengthJs extends _DOMTypeJs implements SVGLength native "*SVGLength" {
3 3
4 static final int SVG_LENGTHTYPE_CM = 6; 4 static final int SVG_LENGTHTYPE_CM = 6;
5 5
6 static final int SVG_LENGTHTYPE_EMS = 3; 6 static final int SVG_LENGTHTYPE_EMS = 3;
7 7
8 static final int SVG_LENGTHTYPE_EXS = 4; 8 static final int SVG_LENGTHTYPE_EXS = 4;
9 9
10 static final int SVG_LENGTHTYPE_IN = 8; 10 static final int SVG_LENGTHTYPE_IN = 8;
11 11
12 static final int SVG_LENGTHTYPE_MM = 7; 12 static final int SVG_LENGTHTYPE_MM = 7;
(...skipping 21 matching lines...) Expand all
34 void set valueAsString(String value) native "this.valueAsString = value;"; 34 void set valueAsString(String value) native "this.valueAsString = value;";
35 35
36 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;"; 36 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;";
37 37
38 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;"; 38 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;";
39 39
40 void convertToSpecifiedUnits(int unitType) native; 40 void convertToSpecifiedUnits(int unitType) native;
41 41
42 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; 42 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native;
43 } 43 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGLangSpace.dart ('k') | client/dom/generated/src/frog/SVGLengthList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698