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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 a4cc1fa6cb4d6d0cb2860f3eba058cea16e125f7..20fc01df66a01f48eacd22b2c76402059a19c7af 100644
--- a/client/dom/generated/src/frog/SVGMatrix.dart
+++ b/client/dom/generated/src/frog/SVGMatrix.dart
@@ -1,5 +1,5 @@
-class SVGMatrixJS implements SVGMatrix native "*SVGMatrix" {
+class SVGMatrixJs extends DOMTypeJs implements SVGMatrix native "*SVGMatrix" {
num get a() native "return this.a;";
@@ -25,29 +25,25 @@ class SVGMatrixJS implements SVGMatrix native "*SVGMatrix" {
void set f(num value) native "this.f = value;";
- SVGMatrixJS flipX() native;
+ SVGMatrixJs flipX() native;
- SVGMatrixJS flipY() native;
+ SVGMatrixJs flipY() native;
- SVGMatrixJS inverse() native;
+ SVGMatrixJs inverse() native;
- SVGMatrixJS multiply(SVGMatrixJS secondMatrix) native;
+ SVGMatrixJs multiply(SVGMatrixJs secondMatrix) native;
- SVGMatrixJS rotate(num angle) native;
+ SVGMatrixJs rotate(num angle) native;
- SVGMatrixJS rotateFromVector(num x, num y) native;
+ SVGMatrixJs rotateFromVector(num x, num y) native;
- SVGMatrixJS scale(num scaleFactor) native;
+ SVGMatrixJs scale(num scaleFactor) native;
- SVGMatrixJS scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
+ SVGMatrixJs scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
- SVGMatrixJS skewX(num angle) native;
+ SVGMatrixJs skewX(num angle) native;
- SVGMatrixJS skewY(num angle) native;
+ SVGMatrixJs skewY(num angle) native;
- SVGMatrixJS translate(num x, num y) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
+ SVGMatrixJs translate(num x, num y) native;
}
« 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