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

Unified Diff: client/dom/generated/src/frog/SVGMatrix.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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
« no previous file with comments | « client/dom/generated/src/frog/SVGMaskElement.dart ('k') | client/dom/generated/src/frog/SVGNumber.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 13da4405871ce08b26770a8a0ae3f3b9e1aa2735..22894ace90e85213a1c48fc56f23ea4e18130b64 100644
--- a/client/dom/generated/src/frog/SVGMatrix.dart
+++ b/client/dom/generated/src/frog/SVGMatrix.dart
@@ -1,17 +1,29 @@
class SVGMatrix native "*SVGMatrix" {
- num a;
+ num get a() native "return this.a;";
- num b;
+ void set a(num value) native "this.a = value;";
- num c;
+ num get b() native "return this.b;";
- num d;
+ void set b(num value) native "this.b = value;";
- num e;
+ num get c() native "return this.c;";
- num f;
+ 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;";
SVGMatrix flipX() native;
« no previous file with comments | « client/dom/generated/src/frog/SVGMaskElement.dart ('k') | client/dom/generated/src/frog/SVGNumber.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698