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

Unified Diff: client/dom/generated/src/frog/HTMLAreaElement.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/HTMLAreaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLAreaElement.dart b/client/dom/generated/src/frog/HTMLAreaElement.dart
index 61300b6c100b3bb4e1840a57670322bc41b2d1ff..3b2fd58a576ef746b4364296d53adc5076ed0fc3 100644
--- a/client/dom/generated/src/frog/HTMLAreaElement.dart
+++ b/client/dom/generated/src/frog/HTMLAreaElement.dart
@@ -1,45 +1,31 @@
class _HTMLAreaElementJs extends _HTMLElementJs implements HTMLAreaElement native "*HTMLAreaElement" {
- String get alt() native "return this.alt;";
+ String alt;
- void set alt(String value) native "this.alt = value;";
+ String coords;
- String get coords() native "return this.coords;";
+ final String hash;
- void set coords(String value) native "this.coords = value;";
+ final String host;
- String get hash() native "return this.hash;";
+ final String hostname;
- String get host() native "return this.host;";
+ String href;
- String get hostname() native "return this.hostname;";
+ bool noHref;
- String get href() native "return this.href;";
+ final String pathname;
- void set href(String value) native "this.href = value;";
+ String ping;
- bool get noHref() native "return this.noHref;";
+ final String port;
- void set noHref(bool value) native "this.noHref = value;";
+ final String protocol;
- String get pathname() native "return this.pathname;";
+ final String search;
- String get ping() native "return this.ping;";
+ String shape;
- void set ping(String value) native "this.ping = value;";
-
- String get port() native "return this.port;";
-
- String get protocol() native "return this.protocol;";
-
- String get search() native "return this.search;";
-
- 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 target;
}

Powered by Google App Engine
This is Rietveld 408576698