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

Unified Diff: client/dom/generated/src/frog/WebKitCSSMatrix.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
Index: client/dom/generated/src/frog/WebKitCSSMatrix.dart
diff --git a/client/dom/generated/src/frog/WebKitCSSMatrix.dart b/client/dom/generated/src/frog/WebKitCSSMatrix.dart
index d6b43250c9b474e87206bbed133abb0e3d4bb6e6..41dadce2a2ee3e36a4dca322d9cb34a4d5477e3e 100644
--- a/client/dom/generated/src/frog/WebKitCSSMatrix.dart
+++ b/client/dom/generated/src/frog/WebKitCSSMatrix.dart
@@ -3,49 +3,93 @@ class WebKitCSSMatrix native "*WebKitCSSMatrix" {
WebKitCSSMatrix([String spec]) native;
- 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 m11;
+ num get d() native "return this.d;";
- num m12;
+ void set d(num value) native "this.d = value;";
- num m13;
+ num get e() native "return this.e;";
- num m14;
+ void set e(num value) native "this.e = value;";
- num m21;
+ num get f() native "return this.f;";
- num m22;
+ void set f(num value) native "this.f = value;";
- num m23;
+ num get m11() native "return this.m11;";
- num m24;
+ void set m11(num value) native "this.m11 = value;";
- num m31;
+ num get m12() native "return this.m12;";
- num m32;
+ void set m12(num value) native "this.m12 = value;";
- num m33;
+ num get m13() native "return this.m13;";
- num m34;
+ void set m13(num value) native "this.m13 = value;";
- num m41;
+ num get m14() native "return this.m14;";
- num m42;
+ void set m14(num value) native "this.m14 = value;";
- num m43;
+ num get m21() native "return this.m21;";
- num m44;
+ void set m21(num value) native "this.m21 = value;";
+
+ num get m22() native "return this.m22;";
+
+ void set m22(num value) native "this.m22 = value;";
+
+ num get m23() native "return this.m23;";
+
+ void set m23(num value) native "this.m23 = value;";
+
+ num get m24() native "return this.m24;";
+
+ void set m24(num value) native "this.m24 = value;";
+
+ num get m31() native "return this.m31;";
+
+ void set m31(num value) native "this.m31 = value;";
+
+ num get m32() native "return this.m32;";
+
+ void set m32(num value) native "this.m32 = value;";
+
+ num get m33() native "return this.m33;";
+
+ void set m33(num value) native "this.m33 = value;";
+
+ num get m34() native "return this.m34;";
+
+ void set m34(num value) native "this.m34 = value;";
+
+ num get m41() native "return this.m41;";
+
+ void set m41(num value) native "this.m41 = value;";
+
+ num get m42() native "return this.m42;";
+
+ void set m42(num value) native "this.m42 = value;";
+
+ num get m43() native "return this.m43;";
+
+ void set m43(num value) native "this.m43 = value;";
+
+ num get m44() native "return this.m44;";
+
+ void set m44(num value) native "this.m44 = value;";
WebKitCSSMatrix inverse() native;
« no previous file with comments | « client/dom/generated/src/frog/WebKitCSSKeyframesRule.dart ('k') | client/dom/generated/src/frog/WebKitCSSTransformValue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698