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

Unified Diff: client/dom/generated/src/wrapping/_HTMLOListElementWrappingImplementation.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/_HTMLOListElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLOListElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLOListElementWrappingImplementation.dart
index 5136b5ececa33a28eb60500d7300520287d32454..1e63d4fc6187b492d6dbf7677651a4d13b36eac2 100644
--- a/client/dom/generated/src/wrapping/_HTMLOListElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLOListElementWrappingImplementation.dart
@@ -11,23 +11,23 @@ class _HTMLOListElementWrappingImplementation extends _HTMLElementWrappingImplem
return new _HTMLOListElementWrappingImplementation();
}
- bool get compact() { return _get__HTMLOListElement_compact(this); }
- static bool _get__HTMLOListElement_compact(var _this) native;
+ bool get compact() { return _get_compact(this); }
+ static bool _get_compact(var _this) native;
- void set compact(bool value) { _set__HTMLOListElement_compact(this, value); }
- static void _set__HTMLOListElement_compact(var _this, bool value) native;
+ void set compact(bool value) { _set_compact(this, value); }
+ static void _set_compact(var _this, bool value) native;
- int get start() { return _get__HTMLOListElement_start(this); }
- static int _get__HTMLOListElement_start(var _this) native;
+ int get start() { return _get_start(this); }
+ static int _get_start(var _this) native;
- void set start(int value) { _set__HTMLOListElement_start(this, value); }
- static void _set__HTMLOListElement_start(var _this, int value) native;
+ void set start(int value) { _set_start(this, value); }
+ static void _set_start(var _this, int value) native;
- String get type() { return _get__HTMLOListElement_type(this); }
- static String _get__HTMLOListElement_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
- void set type(String value) { _set__HTMLOListElement_type(this, value); }
- static void _set__HTMLOListElement_type(var _this, String value) native;
+ void set type(String value) { _set_type(this, value); }
+ static void _set_type(var _this, String value) native;
String get typeName() { return "HTMLOListElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698