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

Unified Diff: client/dom/generated/src/wrapping/_HTMLProgressElementWrappingImplementation.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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_HTMLProgressElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLProgressElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLProgressElementWrappingImplementation.dart
index 3f7c46ce1fd1cf45f4f01d9fb1a33b0d32ace9e8..88d7d88f77803a2627b2c147dd063438b9974d40 100644
--- a/client/dom/generated/src/wrapping/_HTMLProgressElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLProgressElementWrappingImplementation.dart
@@ -11,26 +11,26 @@ class _HTMLProgressElementWrappingImplementation extends _HTMLElementWrappingImp
return new _HTMLProgressElementWrappingImplementation();
}
- HTMLFormElement get form() { return _get__HTMLProgressElement_form(this); }
- static HTMLFormElement _get__HTMLProgressElement_form(var _this) native;
+ HTMLFormElement get form() { return _get_form(this); }
+ static HTMLFormElement _get_form(var _this) native;
- NodeList get labels() { return _get__HTMLProgressElement_labels(this); }
- static NodeList _get__HTMLProgressElement_labels(var _this) native;
+ NodeList get labels() { return _get_labels(this); }
+ static NodeList _get_labels(var _this) native;
- num get max() { return _get__HTMLProgressElement_max(this); }
- static num _get__HTMLProgressElement_max(var _this) native;
+ num get max() { return _get_max(this); }
+ static num _get_max(var _this) native;
- void set max(num value) { _set__HTMLProgressElement_max(this, value); }
- static void _set__HTMLProgressElement_max(var _this, num value) native;
+ void set max(num value) { _set_max(this, value); }
+ static void _set_max(var _this, num value) native;
- num get position() { return _get__HTMLProgressElement_position(this); }
- static num _get__HTMLProgressElement_position(var _this) native;
+ num get position() { return _get_position(this); }
+ static num _get_position(var _this) native;
- num get value() { return _get__HTMLProgressElement_value(this); }
- static num _get__HTMLProgressElement_value(var _this) native;
+ num get value() { return _get_value(this); }
+ static num _get_value(var _this) native;
- void set value(num value) { _set__HTMLProgressElement_value(this, value); }
- static void _set__HTMLProgressElement_value(var _this, num value) native;
+ void set value(num value) { _set_value(this, value); }
+ static void _set_value(var _this, num value) native;
String get typeName() { return "HTMLProgressElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698