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

Unified Diff: client/dom/generated/src/frog/HTMLMetaElement.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/HTMLMetaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLMetaElement.dart b/client/dom/generated/src/frog/HTMLMetaElement.dart
index eae4421f3a0c96f08824632ccd0b955cf821e3bc..55762f29dac435e70220dd9081eedb67303a8b50 100644
--- a/client/dom/generated/src/frog/HTMLMetaElement.dart
+++ b/client/dom/generated/src/frog/HTMLMetaElement.dart
@@ -1,11 +1,19 @@
class HTMLMetaElement extends HTMLElement native "*HTMLMetaElement" {
- String content;
+ String get content() native "return this.content;";
- String httpEquiv;
+ void set content(String value) native "this.content = value;";
- String name;
+ String get httpEquiv() native "return this.httpEquiv;";
- String scheme;
+ void set httpEquiv(String value) native "this.httpEquiv = value;";
+
+ String get name() native "return this.name;";
+
+ void set name(String value) native "this.name = value;";
+
+ String get scheme() native "return this.scheme;";
+
+ void set scheme(String value) native "this.scheme = value;";
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLMenuElement.dart ('k') | client/dom/generated/src/frog/HTMLMeterElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698