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

Unified Diff: client/html/generated/src/wrapping/_SVGMatrixWrappingImplementation.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/src/wrapping/_SVGMatrixWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_SVGMatrixWrappingImplementation.dart b/client/html/generated/src/wrapping/_SVGMatrixWrappingImplementation.dart
deleted file mode 100644
index 161c43a4a0683ce01302503d9f1e5b7b166ddc45..0000000000000000000000000000000000000000
--- a/client/html/generated/src/wrapping/_SVGMatrixWrappingImplementation.dart
+++ /dev/null
@@ -1,77 +0,0 @@
-// 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 SVGMatrixWrappingImplementation extends DOMWrapperBase implements SVGMatrix {
- SVGMatrixWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
-
- num get a() { return _ptr.a; }
-
- void set a(num value) { _ptr.a = value; }
-
- num get b() { return _ptr.b; }
-
- void set b(num value) { _ptr.b = value; }
-
- num get c() { return _ptr.c; }
-
- void set c(num value) { _ptr.c = value; }
-
- num get d() { return _ptr.d; }
-
- void set d(num value) { _ptr.d = value; }
-
- num get e() { return _ptr.e; }
-
- void set e(num value) { _ptr.e = value; }
-
- num get f() { return _ptr.f; }
-
- void set f(num value) { _ptr.f = value; }
-
- SVGMatrix flipX() {
- return LevelDom.wrapSVGMatrix(_ptr.flipX());
- }
-
- SVGMatrix flipY() {
- return LevelDom.wrapSVGMatrix(_ptr.flipY());
- }
-
- SVGMatrix inverse() {
- return LevelDom.wrapSVGMatrix(_ptr.inverse());
- }
-
- SVGMatrix multiply(SVGMatrix secondMatrix) {
- return LevelDom.wrapSVGMatrix(_ptr.multiply(LevelDom.unwrap(secondMatrix)));
- }
-
- SVGMatrix rotate(num angle) {
- return LevelDom.wrapSVGMatrix(_ptr.rotate(angle));
- }
-
- SVGMatrix rotateFromVector(num x, num y) {
- return LevelDom.wrapSVGMatrix(_ptr.rotateFromVector(x, y));
- }
-
- SVGMatrix scale(num scaleFactor) {
- return LevelDom.wrapSVGMatrix(_ptr.scale(scaleFactor));
- }
-
- SVGMatrix scaleNonUniform(num scaleFactorX, num scaleFactorY) {
- return LevelDom.wrapSVGMatrix(_ptr.scaleNonUniform(scaleFactorX, scaleFactorY));
- }
-
- SVGMatrix skewX(num angle) {
- return LevelDom.wrapSVGMatrix(_ptr.skewX(angle));
- }
-
- SVGMatrix skewY(num angle) {
- return LevelDom.wrapSVGMatrix(_ptr.skewY(angle));
- }
-
- SVGMatrix translate(num x, num y) {
- return LevelDom.wrapSVGMatrix(_ptr.translate(x, y));
- }
-}

Powered by Google App Engine
This is Rietveld 408576698