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

Unified Diff: client/dom/generated/src/interface/WebKitCSSMatrix.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/interface/WebKitCSSMatrix.dart
diff --git a/client/dom/generated/src/interface/WebKitCSSMatrix.dart b/client/dom/generated/src/interface/WebKitCSSMatrix.dart
deleted file mode 100644
index 3b3bb60bbdca170890646f9c23f9fea7d7261060..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/interface/WebKitCSSMatrix.dart
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright (c) 2012, 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.
-
-interface WebKitCSSMatrix default _WebKitCSSMatrixFactoryProvider {
-
- WebKitCSSMatrix([String cssValue]);
-
- 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;
-
- WebKitCSSMatrix inverse();
-
- WebKitCSSMatrix multiply(WebKitCSSMatrix secondMatrix);
-
- WebKitCSSMatrix rotate(num rotX, num rotY, num rotZ);
-
- WebKitCSSMatrix rotateAxisAngle(num x, num y, num z, num angle);
-
- WebKitCSSMatrix scale(num scaleX, num scaleY, num scaleZ);
-
- void setMatrixValue(String string);
-
- WebKitCSSMatrix skewX(num angle);
-
- WebKitCSSMatrix skewY(num angle);
-
- String toString();
-
- WebKitCSSMatrix translate(num x, num y, num z);
-}

Powered by Google App Engine
This is Rietveld 408576698