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

Side by Side 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, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement nativ e "*HTMLBodyElement" { 2 class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement nativ e "*HTMLBodyElement" {
3 3
4 String get aLink() native "return this.aLink;"; 4 String aLink;
5 5
6 void set aLink(String value) native "this.aLink = value;"; 6 String background;
7 7
8 String get background() native "return this.background;"; 8 String bgColor;
9 9
10 void set background(String value) native "this.background = value;"; 10 String link;
11 11
12 String get bgColor() native "return this.bgColor;"; 12 String text;
13 13
14 void set bgColor(String value) native "this.bgColor = value;"; 14 String vLink;
15
16 String get link() native "return this.link;";
17
18 void set link(String value) native "this.link = value;";
19
20 String get text() native "return this.text;";
21
22 void set text(String value) native "this.text = value;";
23
24 String get vLink() native "return this.vLink;";
25
26 void set vLink(String value) native "this.vLink = value;";
27 } 15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698