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

Unified Diff: client/dom/generated/src/frog/SVGComponentTransferFunctionElement.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/SVGComponentTransferFunctionElement.dart
diff --git a/client/dom/generated/src/frog/SVGComponentTransferFunctionElement.dart b/client/dom/generated/src/frog/SVGComponentTransferFunctionElement.dart
index e37b247ddcfb3ddcb5fbda2daf7f089f76dbb75a..3d91402d11f1f7c52fbac113cc4d9ffd181b437d 100644
--- a/client/dom/generated/src/frog/SVGComponentTransferFunctionElement.dart
+++ b/client/dom/generated/src/frog/SVGComponentTransferFunctionElement.dart
@@ -13,17 +13,17 @@ class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV
static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
- _SVGAnimatedNumberJs get amplitude() native "return this.amplitude;";
+ final _SVGAnimatedNumberJs amplitude;
- _SVGAnimatedNumberJs get exponent() native "return this.exponent;";
+ final _SVGAnimatedNumberJs exponent;
- _SVGAnimatedNumberJs get intercept() native "return this.intercept;";
+ final _SVGAnimatedNumberJs intercept;
- _SVGAnimatedNumberJs get offset() native "return this.offset;";
+ final _SVGAnimatedNumberJs offset;
- _SVGAnimatedNumberJs get slope() native "return this.slope;";
+ final _SVGAnimatedNumberJs slope;
- _SVGAnimatedNumberListJs get tableValues() native "return this.tableValues;";
+ final _SVGAnimatedNumberListJs tableValues;
- _SVGAnimatedEnumerationJs get type() native "return this.type;";
+ final _SVGAnimatedEnumerationJs type;
}

Powered by Google App Engine
This is Rietveld 408576698