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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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/HTMLAnchorElement.dart
diff --git a/client/dom/generated/src/frog/HTMLAnchorElement.dart b/client/dom/generated/src/frog/HTMLAnchorElement.dart
index ef3b453dd01341bf5653deeab34779816f798c5e..d648b0bc0fac0ff5dfc634285f90d929b6c249ec 100644
--- a/client/dom/generated/src/frog/HTMLAnchorElement.dart
+++ b/client/dom/generated/src/frog/HTMLAnchorElement.dart
@@ -1,85 +1,47 @@
class _HTMLAnchorElementJs extends _HTMLElementJs implements HTMLAnchorElement native "*HTMLAnchorElement" {
- String get charset() native "return this.charset;";
+ String charset;
- void set charset(String value) native "this.charset = value;";
+ String coords;
- String get coords() native "return this.coords;";
+ String download;
- void set coords(String value) native "this.coords = value;";
+ String hash;
- String get download() native "return this.download;";
+ String host;
- void set download(String value) native "this.download = value;";
+ String hostname;
- String get hash() native "return this.hash;";
+ String href;
- void set hash(String value) native "this.hash = value;";
+ String hreflang;
- String get host() native "return this.host;";
+ String name;
- void set host(String value) native "this.host = value;";
+ final String origin;
- String get hostname() native "return this.hostname;";
+ String pathname;
- void set hostname(String value) native "this.hostname = value;";
+ String ping;
- String get href() native "return this.href;";
+ String port;
- void set href(String value) native "this.href = value;";
+ String protocol;
- String get hreflang() native "return this.hreflang;";
+ String rel;
- void set hreflang(String value) native "this.hreflang = value;";
+ String rev;
- String get name() native "return this.name;";
+ String search;
- void set name(String value) native "this.name = value;";
+ String shape;
- String get origin() native "return this.origin;";
+ String target;
- String get pathname() native "return this.pathname;";
+ final String text;
- void set pathname(String value) native "this.pathname = value;";
-
- String get ping() native "return this.ping;";
-
- void set ping(String value) native "this.ping = 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 rel() native "return this.rel;";
-
- void set rel(String value) native "this.rel = value;";
-
- String get rev() native "return this.rev;";
-
- void set rev(String value) native "this.rev = value;";
-
- String get search() native "return this.search;";
-
- void set search(String value) native "this.search = value;";
-
- String get shape() native "return this.shape;";
-
- void set shape(String value) native "this.shape = value;";
-
- String get target() native "return this.target;";
-
- void set target(String value) native "this.target = value;";
-
- String get text() native "return this.text;";
-
- String get type() native "return this.type;";
-
- void set type(String value) native "this.type = value;";
+ String type;
String toString() native;
}

Powered by Google App Engine
This is Rietveld 408576698