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

Unified Diff: client/dom/generated/src/wrapping/_SVGTransformWrappingImplementation.dart

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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/wrapping/_SVGTransformWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_SVGTransformWrappingImplementation.dart b/client/dom/generated/src/wrapping/_SVGTransformWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..49e617b12df091754416b89fe0a32cf3625966ec
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_SVGTransformWrappingImplementation.dart
@@ -0,0 +1,60 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+class _SVGTransformWrappingImplementation extends DOMWrapperBase implements SVGTransform {
+ _SVGTransformWrappingImplementation() : super() {}
+
+ static create__SVGTransformWrappingImplementation() native {
+ return new _SVGTransformWrappingImplementation();
+ }
+
+ num get angle() { return _get_angle(this); }
+ static num _get_angle(var _this) native;
+
+ SVGMatrix get matrix() { return _get_matrix(this); }
+ static SVGMatrix _get_matrix(var _this) native;
+
+ int get type() { return _get_type(this); }
+ static int _get_type(var _this) native;
+
+ void setMatrix(SVGMatrix matrix) {
+ _setMatrix(this, matrix);
+ return;
+ }
+ static void _setMatrix(receiver, matrix) native;
+
+ void setRotate(num angle, num cx, num cy) {
+ _setRotate(this, angle, cx, cy);
+ return;
+ }
+ static void _setRotate(receiver, angle, cx, cy) native;
+
+ void setScale(num sx, num sy) {
+ _setScale(this, sx, sy);
+ return;
+ }
+ static void _setScale(receiver, sx, sy) native;
+
+ void setSkewX(num angle) {
+ _setSkewX(this, angle);
+ return;
+ }
+ static void _setSkewX(receiver, angle) native;
+
+ void setSkewY(num angle) {
+ _setSkewY(this, angle);
+ return;
+ }
+ static void _setSkewY(receiver, angle) native;
+
+ void setTranslate(num tx, num ty) {
+ _setTranslate(this, tx, ty);
+ return;
+ }
+ static void _setTranslate(receiver, tx, ty) native;
+
+ String get typeName() { return "SVGTransform"; }
+}

Powered by Google App Engine
This is Rietveld 408576698