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

Unified Diff: client/dom/generated/src/frog/HTMLScriptElement.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/HTMLScriptElement.dart
diff --git a/client/dom/generated/src/frog/HTMLScriptElement.dart b/client/dom/generated/src/frog/HTMLScriptElement.dart
index 7d54a3f926cd094407e435a2f68c80f8ce9b1647..5a69e8da4e8cb68f4d91383b4bda0c2ced837fd4 100644
--- a/client/dom/generated/src/frog/HTMLScriptElement.dart
+++ b/client/dom/generated/src/frog/HTMLScriptElement.dart
@@ -1,35 +1,19 @@
class _HTMLScriptElementJs extends _HTMLElementJs implements HTMLScriptElement native "*HTMLScriptElement" {
- bool get async() native "return this.async;";
+ bool async;
- void set async(bool value) native "this.async = value;";
+ String charset;
- String get charset() native "return this.charset;";
+ bool defer;
- void set charset(String value) native "this.charset = value;";
+ String event;
- bool get defer() native "return this.defer;";
+ String htmlFor;
- void set defer(bool value) native "this.defer = value;";
+ String src;
- String get event() native "return this.event;";
+ String text;
- void set event(String value) native "this.event = value;";
-
- String get htmlFor() native "return this.htmlFor;";
-
- void set htmlFor(String value) native "this.htmlFor = value;";
-
- String get src() native "return this.src;";
-
- void set src(String value) native "this.src = value;";
-
- String get text() native "return this.text;";
-
- void set text(String value) native "this.text = value;";
-
- String get type() native "return this.type;";
-
- void set type(String value) native "this.type = value;";
+ String type;
}

Powered by Google App Engine
This is Rietveld 408576698