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

Unified Diff: client/dom/generated/src/wrapping/_HTMLLIElementWrappingImplementation.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/_HTMLLIElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLLIElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLLIElementWrappingImplementation.dart
index 64c904ab6bbb4fe853cd0dc485e9f523e9c016b1..0067ecb508afed45d8d53b9b19f4c628eb183d01 100644
--- a/client/dom/generated/src/wrapping/_HTMLLIElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLLIElementWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _HTMLLIElementWrappingImplementation extends _HTMLElementWrappingImplement
return new _HTMLLIElementWrappingImplementation();
}
- String get type() { return _get__HTMLLIElement_type(this); }
- static String _get__HTMLLIElement_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
- void set type(String value) { _set__HTMLLIElement_type(this, value); }
- static void _set__HTMLLIElement_type(var _this, String value) native;
+ void set type(String value) { _set_type(this, value); }
+ static void _set_type(var _this, String value) native;
- int get value() { return _get__HTMLLIElement_value(this); }
- static int _get__HTMLLIElement_value(var _this) native;
+ int get value() { return _get_value(this); }
+ static int _get_value(var _this) native;
- void set value(int value) { _set__HTMLLIElement_value(this, value); }
- static void _set__HTMLLIElement_value(var _this, int value) native;
+ void set value(int value) { _set_value(this, value); }
+ static void _set_value(var _this, int value) native;
String get typeName() { return "HTMLLIElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698