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

Unified Diff: client/dom/generated/src/frog/HTMLObjectElement.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/HTMLObjectElement.dart
diff --git a/client/dom/generated/src/frog/HTMLObjectElement.dart b/client/dom/generated/src/frog/HTMLObjectElement.dart
index f497c8f1d4c85c5181577a5752b7241ba46ce6ab..d45db5bfd31803a0f9ec46992aae493c607f814a 100644
--- a/client/dom/generated/src/frog/HTMLObjectElement.dart
+++ b/client/dom/generated/src/frog/HTMLObjectElement.dart
@@ -1,79 +1,47 @@
class _HTMLObjectElementJs extends _HTMLElementJs implements HTMLObjectElement native "*HTMLObjectElement" {
- String get align() native "return this.align;";
+ String align;
- void set align(String value) native "this.align = value;";
+ String archive;
- String get archive() native "return this.archive;";
+ String border;
- void set archive(String value) native "this.archive = value;";
+ String code;
- String get border() native "return this.border;";
+ String codeBase;
- void set border(String value) native "this.border = value;";
+ String codeType;
- String get code() native "return this.code;";
+ final _DocumentJs contentDocument;
- void set code(String value) native "this.code = value;";
+ String data;
- String get codeBase() native "return this.codeBase;";
+ bool declare;
- void set codeBase(String value) native "this.codeBase = value;";
+ final _HTMLFormElementJs form;
- String get codeType() native "return this.codeType;";
+ String height;
- void set codeType(String value) native "this.codeType = value;";
+ int hspace;
- _DocumentJs get contentDocument() native "return this.contentDocument;";
+ String name;
- String get data() native "return this.data;";
+ String standby;
- void set data(String value) native "this.data = value;";
+ String type;
- bool get declare() native "return this.declare;";
+ String useMap;
- void set declare(bool value) native "this.declare = value;";
+ final String validationMessage;
- _HTMLFormElementJs get form() native "return this.form;";
+ final _ValidityStateJs validity;
- String get height() native "return this.height;";
+ int vspace;
- void set height(String value) native "this.height = value;";
+ String width;
- int get hspace() native "return this.hspace;";
-
- void set hspace(int value) native "this.hspace = value;";
-
- String get name() native "return this.name;";
-
- void set name(String value) native "this.name = value;";
-
- String get standby() native "return this.standby;";
-
- void set standby(String value) native "this.standby = value;";
-
- String get type() native "return this.type;";
-
- void set type(String value) native "this.type = value;";
-
- String get useMap() native "return this.useMap;";
-
- void set useMap(String value) native "this.useMap = value;";
-
- String get validationMessage() native "return this.validationMessage;";
-
- _ValidityStateJs get validity() native "return this.validity;";
-
- int get vspace() native "return this.vspace;";
-
- void set vspace(int value) native "this.vspace = value;";
-
- String get width() native "return this.width;";
-
- void set width(String value) native "this.width = value;";
-
- bool get willValidate() native "return this.willValidate;";
+ final bool willValidate;
bool checkValidity() native;

Powered by Google App Engine
This is Rietveld 408576698