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

Unified Diff: client/dom/generated/src/frog/HTMLLinkElement.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 128afe2914819f257d250849f4af17304cbc536e..88f1439703f9508ac4d00e70340ce9ad5854f727 100644
--- a/client/dom/generated/src/frog/HTMLLinkElement.dart
+++ b/client/dom/generated/src/frog/HTMLLinkElement.dart
@@ -1,25 +1,45 @@
class HTMLLinkElement extends HTMLElement native "*HTMLLinkElement" {
- String charset;
+ String get charset() native "return this.charset;";
- bool disabled;
+ void set charset(String value) native "this.charset = value;";
- String href;
+ bool get disabled() native "return this.disabled;";
- String hreflang;
+ void set disabled(bool value) native "this.disabled = value;";
- String media;
+ String get href() native "return this.href;";
- String rel;
+ void set href(String value) native "this.href = value;";
- String rev;
+ String get hreflang() native "return this.hreflang;";
- StyleSheet sheet;
+ void set hreflang(String value) native "this.hreflang = value;";
- DOMSettableTokenList sizes;
+ String get media() native "return this.media;";
- String target;
+ void set media(String value) native "this.media = value;";
- String type;
+ 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;";
+
+ StyleSheet get sheet() native "return this.sheet;";
+
+ DOMSettableTokenList get sizes() native "return this.sizes;";
+
+ void set sizes(DOMSettableTokenList 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;";
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLLegendElement.dart ('k') | client/dom/generated/src/frog/HTMLMapElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698