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

Unified Diff: client/dom/generated/src/frog/Location.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 months 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/frog/Location.dart
diff --git a/client/dom/generated/src/frog/Location.dart b/client/dom/generated/src/frog/Location.dart
index 956f463e8c426186d162d62ad9007aa59695ad11..d46cb1c30ee888aed3811f8469fed3313606dc11 100644
--- a/client/dom/generated/src/frog/Location.dart
+++ b/client/dom/generated/src/frog/Location.dart
@@ -1,23 +1,39 @@
class Location native "*Location" {
- String hash;
+ String get hash() native "return this.hash;";
- String host;
+ void set hash(String value) native "this.hash = value;";
- String hostname;
+ String get host() native "return this.host;";
- String href;
+ void set host(String value) native "this.host = value;";
- String origin;
+ String get hostname() native "return this.hostname;";
- String pathname;
+ void set hostname(String value) native "this.hostname = value;";
- String port;
+ String get href() native "return this.href;";
- String protocol;
+ void set href(String value) native "this.href = value;";
- String search;
+ String get origin() native "return this.origin;";
+
+ String get pathname() native "return this.pathname;";
+
+ void set pathname(String value) native "this.pathname = value;";
+
+ String get port() native "return this.port;";
+
+ void set port(String value) native "this.port = value;";
+
+ String get protocol() native "return this.protocol;";
+
+ void set protocol(String value) native "this.protocol = value;";
+
+ String get search() native "return this.search;";
+
+ void set search(String value) native "this.search = value;";
void assign(String url) native;
« no previous file with comments | « client/dom/generated/src/frog/KeyboardEvent.dart ('k') | client/dom/generated/src/frog/LowPass2FilterNode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698