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

Unified Diff: client/dom/generated/src/wrapping/_HTMLKeygenElementWrappingImplementation.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/_HTMLKeygenElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLKeygenElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLKeygenElementWrappingImplementation.dart
index ef1c44d44fa32fd2b804865b1bad1533de1ec0d0..c5c5274145bfca00cf31133b37dd4b4dd6e4d53a 100644
--- a/client/dom/generated/src/wrapping/_HTMLKeygenElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLKeygenElementWrappingImplementation.dart
@@ -11,53 +11,53 @@ class _HTMLKeygenElementWrappingImplementation extends _HTMLElementWrappingImple
return new _HTMLKeygenElementWrappingImplementation();
}
- bool get autofocus() { return _get__HTMLKeygenElement_autofocus(this); }
- static bool _get__HTMLKeygenElement_autofocus(var _this) native;
+ bool get autofocus() { return _get_autofocus(this); }
+ static bool _get_autofocus(var _this) native;
- void set autofocus(bool value) { _set__HTMLKeygenElement_autofocus(this, value); }
- static void _set__HTMLKeygenElement_autofocus(var _this, bool value) native;
+ void set autofocus(bool value) { _set_autofocus(this, value); }
+ static void _set_autofocus(var _this, bool value) native;
- String get challenge() { return _get__HTMLKeygenElement_challenge(this); }
- static String _get__HTMLKeygenElement_challenge(var _this) native;
+ String get challenge() { return _get_challenge(this); }
+ static String _get_challenge(var _this) native;
- void set challenge(String value) { _set__HTMLKeygenElement_challenge(this, value); }
- static void _set__HTMLKeygenElement_challenge(var _this, String value) native;
+ void set challenge(String value) { _set_challenge(this, value); }
+ static void _set_challenge(var _this, String value) native;
- bool get disabled() { return _get__HTMLKeygenElement_disabled(this); }
- static bool _get__HTMLKeygenElement_disabled(var _this) native;
+ bool get disabled() { return _get_disabled(this); }
+ static bool _get_disabled(var _this) native;
- void set disabled(bool value) { _set__HTMLKeygenElement_disabled(this, value); }
- static void _set__HTMLKeygenElement_disabled(var _this, bool value) native;
+ void set disabled(bool value) { _set_disabled(this, value); }
+ static void _set_disabled(var _this, bool value) native;
- HTMLFormElement get form() { return _get__HTMLKeygenElement_form(this); }
- static HTMLFormElement _get__HTMLKeygenElement_form(var _this) native;
+ HTMLFormElement get form() { return _get_form(this); }
+ static HTMLFormElement _get_form(var _this) native;
- String get keytype() { return _get__HTMLKeygenElement_keytype(this); }
- static String _get__HTMLKeygenElement_keytype(var _this) native;
+ String get keytype() { return _get_keytype(this); }
+ static String _get_keytype(var _this) native;
- void set keytype(String value) { _set__HTMLKeygenElement_keytype(this, value); }
- static void _set__HTMLKeygenElement_keytype(var _this, String value) native;
+ void set keytype(String value) { _set_keytype(this, value); }
+ static void _set_keytype(var _this, String value) native;
- NodeList get labels() { return _get__HTMLKeygenElement_labels(this); }
- static NodeList _get__HTMLKeygenElement_labels(var _this) native;
+ NodeList get labels() { return _get_labels(this); }
+ static NodeList _get_labels(var _this) native;
- String get name() { return _get__HTMLKeygenElement_name(this); }
- static String _get__HTMLKeygenElement_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- void set name(String value) { _set__HTMLKeygenElement_name(this, value); }
- static void _set__HTMLKeygenElement_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__HTMLKeygenElement_type(this); }
- static String _get__HTMLKeygenElement_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
- String get validationMessage() { return _get__HTMLKeygenElement_validationMessage(this); }
- static String _get__HTMLKeygenElement_validationMessage(var _this) native;
+ String get validationMessage() { return _get_validationMessage(this); }
+ static String _get_validationMessage(var _this) native;
- ValidityState get validity() { return _get__HTMLKeygenElement_validity(this); }
- static ValidityState _get__HTMLKeygenElement_validity(var _this) native;
+ ValidityState get validity() { return _get_validity(this); }
+ static ValidityState _get_validity(var _this) native;
- bool get willValidate() { return _get__HTMLKeygenElement_willValidate(this); }
- static bool _get__HTMLKeygenElement_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