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

Unified Diff: client/dom/generated/src/wrapping/_HTMLLabelElementWrappingImplementation.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/_HTMLLabelElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLLabelElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLLabelElementWrappingImplementation.dart
index 087b9d70ea946f1223e7b2b8cbc85122af1d3241..9ddbf23b826fa7db482c6086847fd62dd3024077 100644
--- a/client/dom/generated/src/wrapping/_HTMLLabelElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLLabelElementWrappingImplementation.dart
@@ -11,23 +11,23 @@ class _HTMLLabelElementWrappingImplementation extends _HTMLElementWrappingImplem
return new _HTMLLabelElementWrappingImplementation();
}
- String get accessKey() { return _get__HTMLLabelElement_accessKey(this); }
- static String _get__HTMLLabelElement_accessKey(var _this) native;
+ String get accessKey() { return _get_accessKey(this); }
+ static String _get_accessKey(var _this) native;
- void set accessKey(String value) { _set__HTMLLabelElement_accessKey(this, value); }
- static void _set__HTMLLabelElement_accessKey(var _this, String value) native;
+ void set accessKey(String value) { _set_accessKey(this, value); }
+ static void _set_accessKey(var _this, String value) native;
- HTMLElement get control() { return _get__HTMLLabelElement_control(this); }
- static HTMLElement _get__HTMLLabelElement_control(var _this) native;
+ HTMLElement get control() { return _get_control(this); }
+ static HTMLElement _get_control(var _this) native;
- HTMLFormElement get form() { return _get__HTMLLabelElement_form(this); }
- static HTMLFormElement _get__HTMLLabelElement_form(var _this) native;
+ HTMLFormElement get form() { return _get_form(this); }
+ static HTMLFormElement _get_form(var _this) native;
- String get htmlFor() { return _get__HTMLLabelElement_htmlFor(this); }
- static String _get__HTMLLabelElement_htmlFor(var _this) native;
+ String get htmlFor() { return _get_htmlFor(this); }
+ static String _get_htmlFor(var _this) native;
- void set htmlFor(String value) { _set__HTMLLabelElement_htmlFor(this, value); }
- static void _set__HTMLLabelElement_htmlFor(var _this, String value) native;
+ void set htmlFor(String value) { _set_htmlFor(this, value); }
+ static void _set_htmlFor(var _this, String value) native;
String get typeName() { return "HTMLLabelElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698