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

Unified Diff: client/dom/generated/src/frog/HTMLBodyElement.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/HTMLBodyElement.dart
diff --git a/client/dom/generated/src/frog/HTMLBodyElement.dart b/client/dom/generated/src/frog/HTMLBodyElement.dart
index c95ca478cd7da1e87b902aae155725e25824a51e..a6daa8a0d1284ba9518ce66f45cf382f44ba3b7d 100644
--- a/client/dom/generated/src/frog/HTMLBodyElement.dart
+++ b/client/dom/generated/src/frog/HTMLBodyElement.dart
@@ -1,27 +1,15 @@
class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement native "*HTMLBodyElement" {
- String get aLink() native "return this.aLink;";
+ String aLink;
- void set aLink(String value) native "this.aLink = value;";
+ String background;
- String get background() native "return this.background;";
+ String bgColor;
- void set background(String value) native "this.background = value;";
+ String link;
- String get bgColor() native "return this.bgColor;";
+ String text;
- void set bgColor(String value) native "this.bgColor = value;";
-
- String get link() native "return this.link;";
-
- void set link(String value) native "this.link = value;";
-
- String get text() native "return this.text;";
-
- void set text(String value) native "this.text = value;";
-
- String get vLink() native "return this.vLink;";
-
- void set vLink(String value) native "this.vLink = value;";
+ String vLink;
}

Powered by Google App Engine
This is Rietveld 408576698