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

Unified Diff: client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.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/wrapping/_HTMLCanvasElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart
deleted file mode 100644
index 6d88612f3a85a9b382b0320ce6c86cf06b634ad4..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart
+++ /dev/null
@@ -1,37 +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 _HTMLCanvasElementWrappingImplementation extends _HTMLElementWrappingImplementation implements HTMLCanvasElement {
- _HTMLCanvasElementWrappingImplementation() : super() {}
-
- static create__HTMLCanvasElementWrappingImplementation() native {
- return new _HTMLCanvasElementWrappingImplementation();
- }
-
- int get height() { return _get_height(this); }
- static int _get_height(var _this) native;
-
- void set height(int value) { _set_height(this, value); }
- static void _set_height(var _this, int value) native;
-
- int get width() { return _get_width(this); }
- static int _get_width(var _this) native;
-
- void set width(int value) { _set_width(this, value); }
- static void _set_width(var _this, int value) native;
-
- Object getContext(String contextId) {
- return _getContext(this, contextId);
- }
- static Object _getContext(receiver, contextId) native;
-
- String toDataURL(String type) {
- return _toDataURL(this, type);
- }
- static String _toDataURL(receiver, type) native;
-
- String get typeName() { return "HTMLCanvasElement"; }
-}

Powered by Google App Engine
This is Rietveld 408576698