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

Unified 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, 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/HTMLTableRowElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTableRowElement.dart b/client/dom/generated/src/frog/HTMLTableRowElement.dart
index a7092afdbbcdb459e8f8fe808b8ba573b4b9a33a..6f5546b1d594497acca931bfc7b441ef6378144e 100644
--- a/client/dom/generated/src/frog/HTMLTableRowElement.dart
+++ b/client/dom/generated/src/frog/HTMLTableRowElement.dart
@@ -1,31 +1,21 @@
class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowElement native "*HTMLTableRowElement" {
- String get align() native "return this.align;";
+ String align;
- void set align(String value) native "this.align = value;";
+ String bgColor;
- String get bgColor() native "return this.bgColor;";
+ final _HTMLCollectionJs cells;
- void set bgColor(String value) native "this.bgColor = value;";
+ String ch;
- _HTMLCollectionJs get cells() native "return this.cells;";
+ String chOff;
- String get ch() native "return this.ch;";
+ final int rowIndex;
- void set ch(String value) native "this.ch = value;";
+ final int sectionRowIndex;
- String get chOff() native "return this.chOff;";
-
- void set chOff(String value) native "this.chOff = value;";
-
- int get rowIndex() native "return this.rowIndex;";
-
- int get sectionRowIndex() native "return this.sectionRowIndex;";
-
- String get vAlign() native "return this.vAlign;";
-
- void set vAlign(String value) native "this.vAlign = value;";
+ String vAlign;
void deleteCell(int index) native;

Powered by Google App Engine
This is Rietveld 408576698