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

Unified Diff: client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.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/_IDBDatabaseWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart
deleted file mode 100644
index dce60d0c7f89b80e8d4ae4bb306fd0359c616daa..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_IDBDatabaseWrappingImplementation.dart
+++ /dev/null
@@ -1,106 +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 _IDBDatabaseWrappingImplementation extends DOMWrapperBase implements IDBDatabase {
- _IDBDatabaseWrappingImplementation() : super() {}
-
- static create__IDBDatabaseWrappingImplementation() native {
- return new _IDBDatabaseWrappingImplementation();
- }
-
- String get name() { return _get_name(this); }
- static String _get_name(var _this) native;
-
- List<String> get objectStoreNames() { return _get_objectStoreNames(this); }
- static List<String> _get_objectStoreNames(var _this) native;
-
- EventListener get onabort() { return _get_onabort(this); }
- static EventListener _get_onabort(var _this) native;
-
- void set onabort(EventListener value) { _set_onabort(this, value); }
- static void _set_onabort(var _this, EventListener value) native;
-
- EventListener get onerror() { return _get_onerror(this); }
- static EventListener _get_onerror(var _this) native;
-
- void set onerror(EventListener value) { _set_onerror(this, value); }
- static void _set_onerror(var _this, EventListener value) native;
-
- EventListener get onversionchange() { return _get_onversionchange(this); }
- static EventListener _get_onversionchange(var _this) native;
-
- void set onversionchange(EventListener value) { _set_onversionchange(this, value); }
- static void _set_onversionchange(var _this, EventListener value) native;
-
- String get version() { return _get_version(this); }
- static String _get_version(var _this) native;
-
- void addEventListener(String type, EventListener listener, [bool useCapture = null]) {
- if (useCapture === null) {
- _addEventListener(this, type, listener);
- return;
- } else {
- _addEventListener_2(this, type, listener, useCapture);
- return;
- }
- }
- static void _addEventListener(receiver, type, listener) native;
- static void _addEventListener_2(receiver, type, listener, useCapture) native;
-
- void close() {
- _close(this);
- return;
- }
- static void _close(receiver) native;
-
- IDBObjectStore createObjectStore(String name) {
- return _createObjectStore(this, name);
- }
- static IDBObjectStore _createObjectStore(receiver, name) native;
-
- void deleteObjectStore(String name) {
- _deleteObjectStore(this, name);
- return;
- }
- static void _deleteObjectStore(receiver, name) native;
-
- bool dispatchEvent(Event evt) {
- return _dispatchEvent(this, evt);
- }
- static bool _dispatchEvent(receiver, evt) native;
-
- void removeEventListener(String type, EventListener listener, [bool useCapture = null]) {
- if (useCapture === null) {
- _removeEventListener(this, type, listener);
- return;
- } else {
- _removeEventListener_2(this, type, listener, useCapture);
- return;
- }
- }
- static void _removeEventListener(receiver, type, listener) native;
- static void _removeEventListener_2(receiver, type, listener, useCapture) native;
-
- IDBVersionChangeRequest setVersion(String version) {
- return _setVersion(this, version);
- }
- static IDBVersionChangeRequest _setVersion(receiver, version) native;
-
- IDBTransaction transaction(var storeName_OR_storeNames, [int mode = null]) {
- if (storeName_OR_storeNames is List<String>) {
- return _transaction(this, storeName_OR_storeNames, mode);
- } else {
- if (storeName_OR_storeNames is String) {
- return _transaction_2(this, storeName_OR_storeNames, mode);
- }
- }
- throw "Incorrect number or type of arguments";
- }
- static IDBTransaction _transaction(receiver, storeName_OR_storeNames, mode) native;
- static IDBTransaction _transaction_2(receiver, storeName_OR_storeNames, mode) native;
-
- String get typeName() { return "IDBDatabase"; }
-}

Powered by Google App Engine
This is Rietveld 408576698