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

Unified Diff: client/dom/generated/src/wrapping/_LocationWrappingImplementation.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/_LocationWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_LocationWrappingImplementation.dart b/client/dom/generated/src/wrapping/_LocationWrappingImplementation.dart
index c86ee3ad3903c83f622575bbd78d77386cc67d12..c1ba9f28f3938b243d954097956ac34b926c54e2 100644
--- a/client/dom/generated/src/wrapping/_LocationWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_LocationWrappingImplementation.dart
@@ -11,56 +11,56 @@ class _LocationWrappingImplementation extends DOMWrapperBase implements Location
return new _LocationWrappingImplementation();
}
- String get hash() { return _get__Location_hash(this); }
- static String _get__Location_hash(var _this) native;
+ String get hash() { return _get_hash(this); }
+ static String _get_hash(var _this) native;
- void set hash(String value) { _set__Location_hash(this, value); }
- static void _set__Location_hash(var _this, String value) native;
+ void set hash(String value) { _set_hash(this, value); }
+ static void _set_hash(var _this, String value) native;
- String get host() { return _get__Location_host(this); }
- static String _get__Location_host(var _this) native;
+ String get host() { return _get_host(this); }
+ static String _get_host(var _this) native;
- void set host(String value) { _set__Location_host(this, value); }
- static void _set__Location_host(var _this, String value) native;
+ void set host(String value) { _set_host(this, value); }
+ static void _set_host(var _this, String value) native;
- String get hostname() { return _get__Location_hostname(this); }
- static String _get__Location_hostname(var _this) native;
+ String get hostname() { return _get_hostname(this); }
+ static String _get_hostname(var _this) native;
- void set hostname(String value) { _set__Location_hostname(this, value); }
- static void _set__Location_hostname(var _this, String value) native;
+ void set hostname(String value) { _set_hostname(this, value); }
+ static void _set_hostname(var _this, String value) native;
- String get href() { return _get__Location_href(this); }
- static String _get__Location_href(var _this) native;
+ String get href() { return _get_href(this); }
+ static String _get_href(var _this) native;
- void set href(String value) { _set__Location_href(this, value); }
- static void _set__Location_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 origin() { return _get__Location_origin(this); }
- static String _get__Location_origin(var _this) native;
+ String get origin() { return _get_origin(this); }
+ static String _get_origin(var _this) native;
- String get pathname() { return _get__Location_pathname(this); }
- static String _get__Location_pathname(var _this) native;
+ String get pathname() { return _get_pathname(this); }
+ static String _get_pathname(var _this) native;
- void set pathname(String value) { _set__Location_pathname(this, value); }
- static void _set__Location_pathname(var _this, String value) native;
+ void set pathname(String value) { _set_pathname(this, value); }
+ static void _set_pathname(var _this, String value) native;
- String get port() { return _get__Location_port(this); }
- static String _get__Location_port(var _this) native;
+ String get port() { return _get_port(this); }
+ static String _get_port(var _this) native;
- void set port(String value) { _set__Location_port(this, value); }
- static void _set__Location_port(var _this, String value) native;
+ void set port(String value) { _set_port(this, value); }
+ static void _set_port(var _this, String value) native;
- String get protocol() { return _get__Location_protocol(this); }
- static String _get__Location_protocol(var _this) native;
+ String get protocol() { return _get_protocol(this); }
+ static String _get_protocol(var _this) native;
- void set protocol(String value) { _set__Location_protocol(this, value); }
- static void _set__Location_protocol(var _this, String value) native;
+ void set protocol(String value) { _set_protocol(this, value); }
+ static void _set_protocol(var _this, String value) native;
- String get search() { return _get__Location_search(this); }
- static String _get__Location_search(var _this) native;
+ String get search() { return _get_search(this); }
+ static String _get_search(var _this) native;
- void set search(String value) { _set__Location_search(this, value); }
- static void _set__Location_search(var _this, String value) native;
+ void set search(String value) { _set_search(this, value); }
+ static void _set_search(var _this, String value) native;
void assign(String url) {
_assign(this, url);

Powered by Google App Engine
This is Rietveld 408576698