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

Unified Diff: client/dom/generated/src/frog/HTMLLinkElement.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/HTMLLinkElement.dart
diff --git a/client/dom/generated/src/frog/HTMLLinkElement.dart b/client/dom/generated/src/frog/HTMLLinkElement.dart
index 64427acf66c5b4525cf0b81d95d08924d98ce3e0..5fc02d118df677fe00a256e4e86f0cb9896bf656 100644
--- a/client/dom/generated/src/frog/HTMLLinkElement.dart
+++ b/client/dom/generated/src/frog/HTMLLinkElement.dart
@@ -1,45 +1,25 @@
class _HTMLLinkElementJs extends _HTMLElementJs implements HTMLLinkElement native "*HTMLLinkElement" {
- String get charset() native "return this.charset;";
+ String charset;
- void set charset(String value) native "this.charset = value;";
+ bool disabled;
- bool get disabled() native "return this.disabled;";
+ String href;
- void set disabled(bool value) native "this.disabled = value;";
+ String hreflang;
- String get href() native "return this.href;";
+ String media;
- void set href(String value) native "this.href = value;";
+ String rel;
- String get hreflang() native "return this.hreflang;";
+ String rev;
- void set hreflang(String value) native "this.hreflang = value;";
+ final _StyleSheetJs sheet;
- String get media() native "return this.media;";
+ _DOMSettableTokenListJs sizes;
- void set media(String value) native "this.media = value;";
+ String target;
- String get rel() native "return this.rel;";
-
- void set rel(String value) native "this.rel = value;";
-
- String get rev() native "return this.rev;";
-
- void set rev(String value) native "this.rev = value;";
-
- _StyleSheetJs get sheet() native "return this.sheet;";
-
- _DOMSettableTokenListJs get sizes() native "return this.sizes;";
-
- void set sizes(_DOMSettableTokenListJs value) native "this.sizes = value;";
-
- String get target() native "return this.target;";
-
- void set target(String value) native "this.target = 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