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

Unified Diff: client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.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/_ClipboardWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
deleted file mode 100644
index 57bf1898d25caf376a77c93d7143bcba86e2c69f..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
+++ /dev/null
@@ -1,64 +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 _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboard {
- _ClipboardWrappingImplementation() : super() {}
-
- static create__ClipboardWrappingImplementation() native {
- return new _ClipboardWrappingImplementation();
- }
-
- String get dropEffect() { return _get_dropEffect(this); }
- static String _get_dropEffect(var _this) native;
-
- void set dropEffect(String value) { _set_dropEffect(this, value); }
- static void _set_dropEffect(var _this, String value) native;
-
- String get effectAllowed() { return _get_effectAllowed(this); }
- static String _get_effectAllowed(var _this) native;
-
- void set effectAllowed(String value) { _set_effectAllowed(this, value); }
- static void _set_effectAllowed(var _this, String value) native;
-
- FileList get files() { return _get_files(this); }
- static FileList _get_files(var _this) native;
-
- DataTransferItemList get items() { return _get_items(this); }
- static DataTransferItemList _get_items(var _this) native;
-
- List get types() { return _get_types(this); }
- static List _get_types(var _this) native;
-
- void clearData([String type = null]) {
- if (type === null) {
- _clearData(this);
- return;
- } else {
- _clearData_2(this, type);
- return;
- }
- }
- static void _clearData(receiver) native;
- static void _clearData_2(receiver, type) native;
-
- String getData(String type) {
- return _getData(this, type);
- }
- static String _getData(receiver, type) native;
-
- bool setData(String type, String data) {
- return _setData(this, type, data);
- }
- static bool _setData(receiver, type, data) native;
-
- void setDragImage(HTMLImageElement image, int x, int y) {
- _setDragImage(this, image, x, y);
- return;
- }
- static void _setDragImage(receiver, image, x, y) native;
-
- String get typeName() { return "Clipboard"; }
-}

Powered by Google App Engine
This is Rietveld 408576698