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

Unified Diff: client/dom/generated/src/frog/HTMLMetaElement.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/HTMLMetaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLMetaElement.dart b/client/dom/generated/src/frog/HTMLMetaElement.dart
index c07457ed7d2d00b8712f899f1c265738c382fff1..e89022fb6a6e1687609f07aa26e1d96d6b4d4cbc 100644
--- a/client/dom/generated/src/frog/HTMLMetaElement.dart
+++ b/client/dom/generated/src/frog/HTMLMetaElement.dart
@@ -1,19 +1,11 @@
class _HTMLMetaElementJs extends _HTMLElementJs implements HTMLMetaElement native "*HTMLMetaElement" {
- String get content() native "return this.content;";
+ String content;
- void set content(String value) native "this.content = value;";
+ String httpEquiv;
- String get httpEquiv() native "return this.httpEquiv;";
+ String name;
- 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;";
+ String scheme;
}

Powered by Google App Engine
This is Rietveld 408576698