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/SVGAngle.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/SVGAngle.dart
diff --git a/client/dom/generated/src/frog/SVGAngle.dart b/client/dom/generated/src/frog/SVGAngle.dart
index fb4a0fb33ab28b79fb3267a5b186d4d45bee38d2..ed6995792d8bc0b60e8e70b6f77e7e25fd6c71bf 100644
--- a/client/dom/generated/src/frog/SVGAngle.dart
+++ b/client/dom/generated/src/frog/SVGAngle.dart
@@ -11,19 +11,13 @@ class _SVGAngleJs extends _DOMTypeJs implements SVGAngle native "*SVGAngle" {
static final int SVG_ANGLETYPE_UNSPECIFIED = 1;
- int get unitType() native "return this.unitType;";
+ final int unitType;
- num get value() native "return this.value;";
+ num value;
- void set value(num value) native "this.value = value;";
+ String valueAsString;
- String get valueAsString() native "return this.valueAsString;";
-
- void set valueAsString(String value) native "this.valueAsString = value;";
-
- num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;";
-
- void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;";
+ num valueInSpecifiedUnits;
void convertToSpecifiedUnits(int unitType) native;

Powered by Google App Engine
This is Rietveld 408576698