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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLMeterElementWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _HTMLMeterElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLMeterElement { 7 class _HTMLMeterElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLMeterElement {
8 _HTMLMeterElementWrappingImplementation() : super() {} 8 _HTMLMeterElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLMeterElementWrappingImplementation() native { 10 static create__HTMLMeterElementWrappingImplementation() native {
11 return new _HTMLMeterElementWrappingImplementation(); 11 return new _HTMLMeterElementWrappingImplementation();
12 } 12 }
13 13
14 HTMLFormElement get form() { return _get__HTMLMeterElement_form(this); } 14 HTMLFormElement get form() { return _get_form(this); }
15 static HTMLFormElement _get__HTMLMeterElement_form(var _this) native; 15 static HTMLFormElement _get_form(var _this) native;
16 16
17 num get high() { return _get__HTMLMeterElement_high(this); } 17 num get high() { return _get_high(this); }
18 static num _get__HTMLMeterElement_high(var _this) native; 18 static num _get_high(var _this) native;
19 19
20 void set high(num value) { _set__HTMLMeterElement_high(this, value); } 20 void set high(num value) { _set_high(this, value); }
21 static void _set__HTMLMeterElement_high(var _this, num value) native; 21 static void _set_high(var _this, num value) native;
22 22
23 NodeList get labels() { return _get__HTMLMeterElement_labels(this); } 23 NodeList get labels() { return _get_labels(this); }
24 static NodeList _get__HTMLMeterElement_labels(var _this) native; 24 static NodeList _get_labels(var _this) native;
25 25
26 num get low() { return _get__HTMLMeterElement_low(this); } 26 num get low() { return _get_low(this); }
27 static num _get__HTMLMeterElement_low(var _this) native; 27 static num _get_low(var _this) native;
28 28
29 void set low(num value) { _set__HTMLMeterElement_low(this, value); } 29 void set low(num value) { _set_low(this, value); }
30 static void _set__HTMLMeterElement_low(var _this, num value) native; 30 static void _set_low(var _this, num value) native;
31 31
32 num get max() { return _get__HTMLMeterElement_max(this); } 32 num get max() { return _get_max(this); }
33 static num _get__HTMLMeterElement_max(var _this) native; 33 static num _get_max(var _this) native;
34 34
35 void set max(num value) { _set__HTMLMeterElement_max(this, value); } 35 void set max(num value) { _set_max(this, value); }
36 static void _set__HTMLMeterElement_max(var _this, num value) native; 36 static void _set_max(var _this, num value) native;
37 37
38 num get min() { return _get__HTMLMeterElement_min(this); } 38 num get min() { return _get_min(this); }
39 static num _get__HTMLMeterElement_min(var _this) native; 39 static num _get_min(var _this) native;
40 40
41 void set min(num value) { _set__HTMLMeterElement_min(this, value); } 41 void set min(num value) { _set_min(this, value); }
42 static void _set__HTMLMeterElement_min(var _this, num value) native; 42 static void _set_min(var _this, num value) native;
43 43
44 num get optimum() { return _get__HTMLMeterElement_optimum(this); } 44 num get optimum() { return _get_optimum(this); }
45 static num _get__HTMLMeterElement_optimum(var _this) native; 45 static num _get_optimum(var _this) native;
46 46
47 void set optimum(num value) { _set__HTMLMeterElement_optimum(this, value); } 47 void set optimum(num value) { _set_optimum(this, value); }
48 static void _set__HTMLMeterElement_optimum(var _this, num value) native; 48 static void _set_optimum(var _this, num value) native;
49 49
50 num get value() { return _get__HTMLMeterElement_value(this); } 50 num get value() { return _get_value(this); }
51 static num _get__HTMLMeterElement_value(var _this) native; 51 static num _get_value(var _this) native;
52 52
53 void set value(num value) { _set__HTMLMeterElement_value(this, value); } 53 void set value(num value) { _set_value(this, value); }
54 static void _set__HTMLMeterElement_value(var _this, num value) native; 54 static void _set_value(var _this, num value) native;
55 55
56 String get typeName() { return "HTMLMeterElement"; } 56 String get typeName() { return "HTMLMeterElement"; }
57 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698