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

Unified Diff: client/dom/generated/src/frog/HTMLOutputElement.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/HTMLOutputElement.dart
diff --git a/client/dom/generated/src/frog/HTMLOutputElement.dart b/client/dom/generated/src/frog/HTMLOutputElement.dart
index 9a584fa9593313c7df1bd4c4b00613359d834671..7f8fbb2af73c00edf20f019da61c5d3dd4b98cfa 100644
--- a/client/dom/generated/src/frog/HTMLOutputElement.dart
+++ b/client/dom/generated/src/frog/HTMLOutputElement.dart
@@ -1,33 +1,25 @@
class _HTMLOutputElementJs extends _HTMLElementJs implements HTMLOutputElement native "*HTMLOutputElement" {
- String get defaultValue() native "return this.defaultValue;";
+ String defaultValue;
- void set defaultValue(String value) native "this.defaultValue = value;";
+ final _HTMLFormElementJs form;
- _HTMLFormElementJs get form() native "return this.form;";
+ _DOMSettableTokenListJs htmlFor;
- _DOMSettableTokenListJs get htmlFor() native "return this.htmlFor;";
+ final _NodeListJs labels;
- void set htmlFor(_DOMSettableTokenListJs value) native "this.htmlFor = value;";
+ String name;
- _NodeListJs get labels() native "return this.labels;";
+ final String type;
- String get name() native "return this.name;";
+ final String validationMessage;
- void set name(String value) native "this.name = value;";
+ final _ValidityStateJs validity;
- String get type() native "return this.type;";
+ String value;
- String get validationMessage() native "return this.validationMessage;";
-
- _ValidityStateJs get validity() native "return this.validity;";
-
- String get value() native "return this.value;";
-
- void set value(String value) native "this.value = value;";
-
- bool get willValidate() native "return this.willValidate;";
+ final bool willValidate;
bool checkValidity() native;

Powered by Google App Engine
This is Rietveld 408576698