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

Unified Diff: client/dom/generated/src/frog/SVGMatrix.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/SVGMatrix.dart
diff --git a/client/dom/generated/src/frog/SVGMatrix.dart b/client/dom/generated/src/frog/SVGMatrix.dart
index db85a1aeda226842561e782167102530637d8705..d73fe9488668bc2c79984a6eaab1e44ee2491105 100644
--- a/client/dom/generated/src/frog/SVGMatrix.dart
+++ b/client/dom/generated/src/frog/SVGMatrix.dart
@@ -1,29 +1,17 @@
class _SVGMatrixJs extends _DOMTypeJs implements SVGMatrix native "*SVGMatrix" {
- num get a() native "return this.a;";
+ num a;
- void set a(num value) native "this.a = value;";
+ num b;
- num get b() native "return this.b;";
+ num c;
- void set b(num value) native "this.b = value;";
+ num d;
- num get c() native "return this.c;";
+ num e;
- void set c(num value) native "this.c = value;";
-
- num get d() native "return this.d;";
-
- void set d(num value) native "this.d = value;";
-
- num get e() native "return this.e;";
-
- void set e(num value) native "this.e = value;";
-
- num get f() native "return this.f;";
-
- void set f(num value) native "this.f = value;";
+ num f;
_SVGMatrixJs flipX() native;

Powered by Google App Engine
This is Rietveld 408576698