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

Unified Diff: client/dom/generated/src/frog/SVGGradientElement.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/SVGGradientElement.dart
diff --git a/client/dom/generated/src/frog/SVGGradientElement.dart b/client/dom/generated/src/frog/SVGGradientElement.dart
index 3fb93a5aa7a69acbb317f052abc8dc56529b6722..54eef2c1340d4407e5ddbccfb4bf66222e677315 100644
--- a/client/dom/generated/src/frog/SVGGradientElement.dart
+++ b/client/dom/generated/src/frog/SVGGradientElement.dart
@@ -9,25 +9,25 @@ class _SVGGradientElementJs extends _SVGElementJs implements SVGGradientElement
static final int SVG_SPREADMETHOD_UNKNOWN = 0;
- _SVGAnimatedTransformListJs get gradientTransform() native "return this.gradientTransform;";
+ final _SVGAnimatedTransformListJs gradientTransform;
- _SVGAnimatedEnumerationJs get gradientUnits() native "return this.gradientUnits;";
+ final _SVGAnimatedEnumerationJs gradientUnits;
- _SVGAnimatedEnumerationJs get spreadMethod() native "return this.spreadMethod;";
+ final _SVGAnimatedEnumerationJs spreadMethod;
// From SVGURIReference
- _SVGAnimatedStringJs get href() native "return this.href;";
+ final _SVGAnimatedStringJs href;
// From SVGExternalResourcesRequired
- _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.externalResourcesRequired;";
+ final _SVGAnimatedBooleanJs externalResourcesRequired;
// From SVGStylable
- _SVGAnimatedStringJs get className() native "return this.className;";
+ final _SVGAnimatedStringJs className;
- _CSSStyleDeclarationJs get style() native "return this.style;";
+ final _CSSStyleDeclarationJs style;
_CSSValueJs getPresentationAttribute(String name) native;
}

Powered by Google App Engine
This is Rietveld 408576698