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

Unified Diff: client/html/generated/html/frog/CSSMatrix.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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/html/generated/html/frog/CSSMatrix.dart
diff --git a/client/html/generated/html/frog/CSSMatrix.dart b/client/html/generated/html/frog/CSSMatrix.dart
new file mode 100644
index 0000000000000000000000000000000000000000..6cb121b391de85d589f3ed81805861dcfc9268ad
--- /dev/null
+++ b/client/html/generated/html/frog/CSSMatrix.dart
@@ -0,0 +1,67 @@
+
+class _CSSMatrixImpl implements CSSMatrix native "*WebKitCSSMatrix" {
+
+ num a;
+
+ num b;
+
+ num c;
+
+ num d;
+
+ num e;
+
+ num f;
+
+ num m11;
+
+ num m12;
+
+ num m13;
+
+ num m14;
+
+ num m21;
+
+ num m22;
+
+ num m23;
+
+ num m24;
+
+ num m31;
+
+ num m32;
+
+ num m33;
+
+ num m34;
+
+ num m41;
+
+ num m42;
+
+ num m43;
+
+ num m44;
+
+ _CSSMatrixImpl inverse() native;
+
+ _CSSMatrixImpl multiply(_CSSMatrixImpl secondMatrix) native;
+
+ _CSSMatrixImpl rotate(num rotX, num rotY, num rotZ) native;
+
+ _CSSMatrixImpl rotateAxisAngle(num x, num y, num z, num angle) native;
+
+ _CSSMatrixImpl scale(num scaleX, num scaleY, num scaleZ) native;
+
+ void setMatrixValue(String string) native;
+
+ _CSSMatrixImpl skewX(num angle) native;
+
+ _CSSMatrixImpl skewY(num angle) native;
+
+ String toString() native;
+
+ _CSSMatrixImpl translate(num x, num y, num z) native;
+}

Powered by Google App Engine
This is Rietveld 408576698