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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 22894ace90e85213a1c48fc56f23ea4e18130b64..a4cc1fa6cb4d6d0cb2860f3eba058cea16e125f7 100644
--- a/client/dom/generated/src/frog/SVGMatrix.dart
+++ b/client/dom/generated/src/frog/SVGMatrix.dart
@@ -1,5 +1,5 @@
-class SVGMatrix native "*SVGMatrix" {
+class SVGMatrixJS implements SVGMatrix native "*SVGMatrix" {
num get a() native "return this.a;";
@@ -25,27 +25,27 @@ class SVGMatrix native "*SVGMatrix" {
void set f(num value) native "this.f = value;";
- SVGMatrix flipX() native;
+ SVGMatrixJS flipX() native;
- SVGMatrix flipY() native;
+ SVGMatrixJS flipY() native;
- SVGMatrix inverse() native;
+ SVGMatrixJS inverse() native;
- SVGMatrix multiply(SVGMatrix secondMatrix) native;
+ SVGMatrixJS multiply(SVGMatrixJS secondMatrix) native;
- SVGMatrix rotate(num angle) native;
+ SVGMatrixJS rotate(num angle) native;
- SVGMatrix rotateFromVector(num x, num y) native;
+ SVGMatrixJS rotateFromVector(num x, num y) native;
- SVGMatrix scale(num scaleFactor) native;
+ SVGMatrixJS scale(num scaleFactor) native;
- SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
+ SVGMatrixJS scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
- SVGMatrix skewX(num angle) native;
+ SVGMatrixJS skewX(num angle) native;
- SVGMatrix skewY(num angle) native;
+ SVGMatrixJS skewY(num angle) native;
- SVGMatrix translate(num x, num y) native;
+ SVGMatrixJS translate(num x, num y) native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/SVGMaskElement.dart ('k') | client/dom/generated/src/frog/SVGMetadataElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698