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

Unified Diff: client/dom/generated/src/frog/SVGPaint.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/SVGPaint.dart
diff --git a/client/dom/generated/src/frog/SVGPaint.dart b/client/dom/generated/src/frog/SVGPaint.dart
index 037974c39616fce7e718786f466eb55a410c305c..13ae4e8ea1169746cef30272735daf540a93646d 100644
--- a/client/dom/generated/src/frog/SVGPaint.dart
+++ b/client/dom/generated/src/frog/SVGPaint.dart
@@ -21,9 +21,9 @@ class _SVGPaintJs extends _SVGColorJs implements SVGPaint native "*SVGPaint" {
static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106;
- int get paintType() native "return this.paintType;";
+ final int paintType;
- String get uri() native "return this.uri;";
+ final String uri;
void setPaint(int paintType, String uri, String rgbColor, String iccColor) native;

Powered by Google App Engine
This is Rietveld 408576698