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

Unified Diff: client/dom/generated/src/frog/HTMLTableColElement.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/HTMLTableColElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTableColElement.dart b/client/dom/generated/src/frog/HTMLTableColElement.dart
index b941d2ffcd1a3238fbed783b2df2f53fd5f543f9..0de7831384804e5188d668781ca64ce8d9c4e7aa 100644
--- a/client/dom/generated/src/frog/HTMLTableColElement.dart
+++ b/client/dom/generated/src/frog/HTMLTableColElement.dart
@@ -1,27 +1,15 @@
class _HTMLTableColElementJs extends _HTMLElementJs implements HTMLTableColElement native "*HTMLTableColElement" {
- String get align() native "return this.align;";
+ String align;
- void set align(String value) native "this.align = value;";
+ String ch;
- String get ch() native "return this.ch;";
+ String chOff;
- void set ch(String value) native "this.ch = value;";
+ int span;
- String get chOff() native "return this.chOff;";
+ String vAlign;
- void set chOff(String value) native "this.chOff = value;";
-
- int get span() native "return this.span;";
-
- void set span(int value) native "this.span = value;";
-
- String get vAlign() native "return this.vAlign;";
-
- void set vAlign(String value) native "this.vAlign = value;";
-
- String get width() native "return this.width;";
-
- void set width(String value) native "this.width = value;";
+ String width;
}

Powered by Google App Engine
This is Rietveld 408576698