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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableRowElement.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 _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme nt native "*HTMLTableRowElement" { 2 class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme nt native "*HTMLTableRowElement" {
3 3
4 String get align() native "return this.align;"; 4 String align;
5 5
6 void set align(String value) native "this.align = value;"; 6 String bgColor;
7 7
8 String get bgColor() native "return this.bgColor;"; 8 final _HTMLCollectionJs cells;
9 9
10 void set bgColor(String value) native "this.bgColor = value;"; 10 String ch;
11 11
12 _HTMLCollectionJs get cells() native "return this.cells;"; 12 String chOff;
13 13
14 String get ch() native "return this.ch;"; 14 final int rowIndex;
15 15
16 void set ch(String value) native "this.ch = value;"; 16 final int sectionRowIndex;
17 17
18 String get chOff() native "return this.chOff;"; 18 String vAlign;
19
20 void set chOff(String value) native "this.chOff = value;";
21
22 int get rowIndex() native "return this.rowIndex;";
23
24 int get sectionRowIndex() native "return this.sectionRowIndex;";
25
26 String get vAlign() native "return this.vAlign;";
27
28 void set vAlign(String value) native "this.vAlign = value;";
29 19
30 void deleteCell(int index) native; 20 void deleteCell(int index) native;
31 21
32 _HTMLElementJs insertCell(int index) native; 22 _HTMLElementJs insertCell(int index) native;
33 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698