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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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 HTMLMeterElementJS extends HTMLElementJS implements HTMLMeterElement nativ e "*HTMLMeterElement" { 2 class HTMLMeterElementJs extends HTMLElementJs implements HTMLMeterElement nativ e "*HTMLMeterElement" {
3 3
4 HTMLFormElementJS get form() native "return this.form;"; 4 HTMLFormElementJs get form() native "return this.form;";
5 5
6 num get high() native "return this.high;"; 6 num get high() native "return this.high;";
7 7
8 void set high(num value) native "this.high = value;"; 8 void set high(num value) native "this.high = value;";
9 9
10 NodeListJS get labels() native "return this.labels;"; 10 NodeListJs get labels() native "return this.labels;";
11 11
12 num get low() native "return this.low;"; 12 num get low() native "return this.low;";
13 13
14 void set low(num value) native "this.low = value;"; 14 void set low(num value) native "this.low = value;";
15 15
16 num get max() native "return this.max;"; 16 num get max() native "return this.max;";
17 17
18 void set max(num value) native "this.max = value;"; 18 void set max(num value) native "this.max = value;";
19 19
20 num get min() native "return this.min;"; 20 num get min() native "return this.min;";
21 21
22 void set min(num value) native "this.min = value;"; 22 void set min(num value) native "this.min = value;";
23 23
24 num get optimum() native "return this.optimum;"; 24 num get optimum() native "return this.optimum;";
25 25
26 void set optimum(num value) native "this.optimum = value;"; 26 void set optimum(num value) native "this.optimum = value;";
27 27
28 num get value() native "return this.value;"; 28 num get value() native "return this.value;";
29 29
30 void set value(num value) native "this.value = value;"; 30 void set value(num value) native "this.value = value;";
31 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLMetaElement.dart ('k') | client/dom/generated/src/frog/HTMLModElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698