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

Unified Diff: client/dom/generated/src/frog/HTMLTextAreaElement.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/HTMLTextAreaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTextAreaElement.dart b/client/dom/generated/src/frog/HTMLTextAreaElement.dart
index fc87db34ae7d9b0443b679023d3abef9fd577c22..73eb81e9a2bedca3c57cea80ae3332d476aefa47 100644
--- a/client/dom/generated/src/frog/HTMLTextAreaElement.dart
+++ b/client/dom/generated/src/frog/HTMLTextAreaElement.dart
@@ -1,83 +1,51 @@
class _HTMLTextAreaElementJs extends _HTMLElementJs implements HTMLTextAreaElement native "*HTMLTextAreaElement" {
- bool get autofocus() native "return this.autofocus;";
+ bool autofocus;
- void set autofocus(bool value) native "this.autofocus = value;";
+ int cols;
- int get cols() native "return this.cols;";
+ String defaultValue;
- void set cols(int value) native "this.cols = value;";
+ String dirName;
- String get defaultValue() native "return this.defaultValue;";
+ bool disabled;
- void set defaultValue(String value) native "this.defaultValue = value;";
+ final _HTMLFormElementJs form;
- String get dirName() native "return this.dirName;";
+ final _NodeListJs labels;
- void set dirName(String value) native "this.dirName = value;";
+ int maxLength;
- bool get disabled() native "return this.disabled;";
+ String name;
- void set disabled(bool value) native "this.disabled = value;";
+ String placeholder;
- _HTMLFormElementJs get form() native "return this.form;";
+ bool readOnly;
- _NodeListJs get labels() native "return this.labels;";
+ bool required;
- int get maxLength() native "return this.maxLength;";
+ int rows;
- void set maxLength(int value) native "this.maxLength = value;";
+ String selectionDirection;
- String get name() native "return this.name;";
+ int selectionEnd;
- void set name(String value) native "this.name = value;";
+ int selectionStart;
- String get placeholder() native "return this.placeholder;";
+ final int textLength;
- void set placeholder(String value) native "this.placeholder = value;";
+ final String type;
- bool get readOnly() native "return this.readOnly;";
+ final String validationMessage;
- void set readOnly(bool value) native "this.readOnly = value;";
+ final _ValidityStateJs validity;
- bool get required() native "return this.required;";
+ String value;
- void set required(bool value) native "this.required = value;";
+ final bool willValidate;
- int get rows() native "return this.rows;";
-
- void set rows(int value) native "this.rows = value;";
-
- String get selectionDirection() native "return this.selectionDirection;";
-
- void set selectionDirection(String value) native "this.selectionDirection = value;";
-
- int get selectionEnd() native "return this.selectionEnd;";
-
- void set selectionEnd(int value) native "this.selectionEnd = value;";
-
- int get selectionStart() native "return this.selectionStart;";
-
- void set selectionStart(int value) native "this.selectionStart = value;";
-
- int get textLength() native "return this.textLength;";
-
- String get type() native "return this.type;";
-
- 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;";
-
- String get wrap() native "return this.wrap;";
-
- void set wrap(String value) native "this.wrap = value;";
+ String wrap;
bool checkValidity() native;

Powered by Google App Engine
This is Rietveld 408576698