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

Unified Diff: client/dom/generated/src/frog/HTMLAreaElement.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/HTMLAreaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLAreaElement.dart b/client/dom/generated/src/frog/HTMLAreaElement.dart
index 6d795cb5262d189eb33347f00a4fa1e76b73dcc6..06407081b8752b932e4a3b146b756590feed465f 100644
--- a/client/dom/generated/src/frog/HTMLAreaElement.dart
+++ b/client/dom/generated/src/frog/HTMLAreaElement.dart
@@ -1,31 +1,45 @@
class HTMLAreaElement extends HTMLElement native "*HTMLAreaElement" {
- String alt;
+ String get alt() native "return this.alt;";
- String coords;
+ void set alt(String value) native "this.alt = value;";
- String hash;
+ String get coords() native "return this.coords;";
- String host;
+ void set coords(String value) native "this.coords = value;";
- String hostname;
+ String get hash() native "return this.hash;";
- String href;
+ String get host() native "return this.host;";
- bool noHref;
+ String get hostname() native "return this.hostname;";
- String pathname;
+ String get href() native "return this.href;";
- String ping;
+ void set href(String value) native "this.href = value;";
- String port;
+ bool get noHref() native "return this.noHref;";
- String protocol;
+ void set noHref(bool value) native "this.noHref = value;";
- String search;
+ String get pathname() native "return this.pathname;";
- String shape;
+ String get ping() native "return this.ping;";
- String target;
+ 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;";
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLAppletElement.dart ('k') | client/dom/generated/src/frog/HTMLBRElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698