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

Unified Diff: client/dom/generated/src/wrapping/_HTMLBaseElementWrappingImplementation.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/_HTMLBaseElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLBaseElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLBaseElementWrappingImplementation.dart
index f67205fe9b80dd1bb5ebb854b3ed69e69b77eea5..66b8509cbb15391d44930df10658ae0176399b90 100644
--- a/client/dom/generated/src/wrapping/_HTMLBaseElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLBaseElementWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _HTMLBaseElementWrappingImplementation extends _HTMLElementWrappingImpleme
return new _HTMLBaseElementWrappingImplementation();
}
- String get href() { return _get__HTMLBaseElement_href(this); }
- static String _get__HTMLBaseElement_href(var _this) native;
+ String get href() { return _get_href(this); }
+ static String _get_href(var _this) native;
- void set href(String value) { _set__HTMLBaseElement_href(this, value); }
- static void _set__HTMLBaseElement_href(var _this, String value) native;
+ void set href(String value) { _set_href(this, value); }
+ static void _set_href(var _this, String value) native;
- String get target() { return _get__HTMLBaseElement_target(this); }
- static String _get__HTMLBaseElement_target(var _this) native;
+ String get target() { return _get_target(this); }
+ static String _get_target(var _this) native;
- void set target(String value) { _set__HTMLBaseElement_target(this, value); }
- static void _set__HTMLBaseElement_target(var _this, String value) native;
+ void set target(String value) { _set_target(this, value); }
+ static void _set_target(var _this, String value) native;
String get typeName() { return "HTMLBaseElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698