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

Unified Diff: client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.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/_HTMLOutputElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart
index ffc5bedbeb15ad1796a553589bea5886f66aac86..a4e40a0d719081a03fb17a480552e0c485725225 100644
--- a/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart
@@ -11,47 +11,47 @@ class _HTMLOutputElementWrappingImplementation extends _HTMLElementWrappingImple
return new _HTMLOutputElementWrappingImplementation();
}
- String get defaultValue() { return _get__HTMLOutputElement_defaultValue(this); }
- static String _get__HTMLOutputElement_defaultValue(var _this) native;
+ String get defaultValue() { return _get_defaultValue(this); }
+ static String _get_defaultValue(var _this) native;
- void set defaultValue(String value) { _set__HTMLOutputElement_defaultValue(this, value); }
- static void _set__HTMLOutputElement_defaultValue(var _this, String value) native;
+ void set defaultValue(String value) { _set_defaultValue(this, value); }
+ static void _set_defaultValue(var _this, String value) native;
- HTMLFormElement get form() { return _get__HTMLOutputElement_form(this); }
- static HTMLFormElement _get__HTMLOutputElement_form(var _this) native;
+ HTMLFormElement get form() { return _get_form(this); }
+ static HTMLFormElement _get_form(var _this) native;
- DOMSettableTokenList get htmlFor() { return _get__HTMLOutputElement_htmlFor(this); }
- static DOMSettableTokenList _get__HTMLOutputElement_htmlFor(var _this) native;
+ DOMSettableTokenList get htmlFor() { return _get_htmlFor(this); }
+ static DOMSettableTokenList _get_htmlFor(var _this) native;
- void set htmlFor(DOMSettableTokenList value) { _set__HTMLOutputElement_htmlFor(this, value); }
- static void _set__HTMLOutputElement_htmlFor(var _this, DOMSettableTokenList value) native;
+ void set htmlFor(DOMSettableTokenList value) { _set_htmlFor(this, value); }
+ static void _set_htmlFor(var _this, DOMSettableTokenList value) native;
- NodeList get labels() { return _get__HTMLOutputElement_labels(this); }
- static NodeList _get__HTMLOutputElement_labels(var _this) native;
+ NodeList get labels() { return _get_labels(this); }
+ static NodeList _get_labels(var _this) native;
- String get name() { return _get__HTMLOutputElement_name(this); }
- static String _get__HTMLOutputElement_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- void set name(String value) { _set__HTMLOutputElement_name(this, value); }
- static void _set__HTMLOutputElement_name(var _this, String value) native;
+ void set name(String value) { _set_name(this, value); }
+ static void _set_name(var _this, String value) native;
- String get type() { return _get__HTMLOutputElement_type(this); }
- static String _get__HTMLOutputElement_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
- String get validationMessage() { return _get__HTMLOutputElement_validationMessage(this); }
- static String _get__HTMLOutputElement_validationMessage(var _this) native;
+ String get validationMessage() { return _get_validationMessage(this); }
+ static String _get_validationMessage(var _this) native;
- ValidityState get validity() { return _get__HTMLOutputElement_validity(this); }
- static ValidityState _get__HTMLOutputElement_validity(var _this) native;
+ ValidityState get validity() { return _get_validity(this); }
+ static ValidityState _get_validity(var _this) native;
- String get value() { return _get__HTMLOutputElement_value(this); }
- static String _get__HTMLOutputElement_value(var _this) native;
+ String get value() { return _get_value(this); }
+ static String _get_value(var _this) native;
- void set value(String value) { _set__HTMLOutputElement_value(this, value); }
- static void _set__HTMLOutputElement_value(var _this, String value) native;
+ void set value(String value) { _set_value(this, value); }
+ static void _set_value(var _this, String value) native;
- bool get willValidate() { return _get__HTMLOutputElement_willValidate(this); }
- static bool _get__HTMLOutputElement_willValidate(var _this) native;
+ bool get willValidate() { return _get_willValidate(this); }
+ static bool _get_willValidate(var _this) native;
bool checkValidity() {
return _checkValidity(this);

Powered by Google App Engine
This is Rietveld 408576698