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

Unified Diff: client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.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/_IDBFactoryWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart
deleted file mode 100644
index ab18a67e1af94f8123d34c595306dc9836a021e3..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart
+++ /dev/null
@@ -1,35 +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 _IDBFactoryWrappingImplementation extends DOMWrapperBase implements IDBFactory {
- _IDBFactoryWrappingImplementation() : super() {}
-
- static create__IDBFactoryWrappingImplementation() native {
- return new _IDBFactoryWrappingImplementation();
- }
-
- int cmp(IDBKey first, IDBKey second) {
- return _cmp(this, first, second);
- }
- static int _cmp(receiver, first, second) native;
-
- IDBVersionChangeRequest deleteDatabase(String name) {
- return _deleteDatabase(this, name);
- }
- static IDBVersionChangeRequest _deleteDatabase(receiver, name) native;
-
- IDBRequest getDatabaseNames() {
- return _getDatabaseNames(this);
- }
- static IDBRequest _getDatabaseNames(receiver) native;
-
- IDBRequest open(String name) {
- return _open(this, name);
- }
- static IDBRequest _open(receiver, name) native;
-
- String get typeName() { return "IDBFactory"; }
-}

Powered by Google App Engine
This is Rietveld 408576698