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

Unified Diff: client/dom/generated/src/frog/SVGStyleElement.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/SVGStyleElement.dart
diff --git a/client/dom/generated/src/frog/SVGStyleElement.dart b/client/dom/generated/src/frog/SVGStyleElement.dart
index 0b3a48bb7ec2df370b4f5b9689e225f2f536f5f6..2ee90850e4e99231d35c05e71b4e65e113558b0e 100644
--- a/client/dom/generated/src/frog/SVGStyleElement.dart
+++ b/client/dom/generated/src/frog/SVGStyleElement.dart
@@ -1,25 +1,15 @@
class _SVGStyleElementJs extends _SVGElementJs implements SVGStyleElement native "*SVGStyleElement" {
- String get media() native "return this.media;";
+ String media;
- void set media(String value) native "this.media = value;";
+ String title;
- String get title() native "return this.title;";
-
- void set title(String value) native "this.title = value;";
-
- String get type() native "return this.type;";
-
- void set type(String value) native "this.type = value;";
+ String type;
// From SVGLangSpace
- String get xmllang() native "return this.xmllang;";
-
- void set xmllang(String value) native "this.xmllang = value;";
-
- String get xmlspace() native "return this.xmlspace;";
+ String xmllang;
- void set xmlspace(String value) native "this.xmlspace = value;";
+ String xmlspace;
}

Powered by Google App Engine
This is Rietveld 408576698