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

Unified Diff: client/dom/generated/src/wrapping/_HTMLOptGroupElementWrappingImplementation.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/_HTMLOptGroupElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLOptGroupElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLOptGroupElementWrappingImplementation.dart
index 32f7be0540bf67c66f69dd5c7ff7be1127584076..1a32176b8388f8a81e4b5e5ae8b14db75dd81c0e 100644
--- a/client/dom/generated/src/wrapping/_HTMLOptGroupElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLOptGroupElementWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _HTMLOptGroupElementWrappingImplementation extends _HTMLElementWrappingImp
return new _HTMLOptGroupElementWrappingImplementation();
}
- bool get disabled() { return _get__HTMLOptGroupElement_disabled(this); }
- static bool _get__HTMLOptGroupElement_disabled(var _this) native;
+ bool get disabled() { return _get_disabled(this); }
+ static bool _get_disabled(var _this) native;
- void set disabled(bool value) { _set__HTMLOptGroupElement_disabled(this, value); }
- static void _set__HTMLOptGroupElement_disabled(var _this, bool value) native;
+ void set disabled(bool value) { _set_disabled(this, value); }
+ static void _set_disabled(var _this, bool value) native;
- String get label() { return _get__HTMLOptGroupElement_label(this); }
- static String _get__HTMLOptGroupElement_label(var _this) native;
+ String get label() { return _get_label(this); }
+ static String _get_label(var _this) native;
- void set label(String value) { _set__HTMLOptGroupElement_label(this, value); }
- static void _set__HTMLOptGroupElement_label(var _this, String value) native;
+ void set label(String value) { _set_label(this, value); }
+ static void _set_label(var _this, String value) native;
String get typeName() { return "HTMLOptGroupElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698