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

Unified Diff: client/html/generated/html/dartium/IDBIndex.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
« no previous file with comments | « client/html/generated/html/dartium/IDBFactory.dart ('k') | client/html/generated/html/dartium/IDBKey.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/generated/html/dartium/IDBIndex.dart
diff --git a/client/html/generated/html/dartium/IDBIndex.dart b/client/html/generated/html/dartium/IDBIndex.dart
deleted file mode 100644
index 2820223ac3b976d3d0fc6a80043ad8b83e8ce029..0000000000000000000000000000000000000000
--- a/client/html/generated/html/dartium/IDBIndex.dart
+++ /dev/null
@@ -1,67 +0,0 @@
-
-class _IDBIndexImpl extends _DOMTypeBase implements IDBIndex {
- _IDBIndexImpl._wrap(ptr) : super._wrap(ptr);
-
- String get keyPath() => _wrap(_ptr.keyPath);
-
- bool get multiEntry() => _wrap(_ptr.multiEntry);
-
- String get name() => _wrap(_ptr.name);
-
- IDBObjectStore get objectStore() => _wrap(_ptr.objectStore);
-
- bool get unique() => _wrap(_ptr.unique);
-
- IDBRequest count([var key_OR_range = null]) {
- if (key_OR_range === null) {
- return _wrap(_ptr.count());
- } else {
- if (key_OR_range is IDBKeyRange) {
- return _wrap(_ptr.count(_unwrap(key_OR_range)));
- } else {
- if (key_OR_range is IDBKey) {
- return _wrap(_ptr.count(_unwrap(key_OR_range)));
- }
- }
- }
- throw "Incorrect number or type of arguments";
- }
-
- IDBRequest getObject(IDBKey key) {
- return _wrap(_ptr.getObject(_unwrap(key)));
- }
-
- IDBRequest getKey(IDBKey key) {
- return _wrap(_ptr.getKey(_unwrap(key)));
- }
-
- IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) {
- if (range === null) {
- if (direction === null) {
- return _wrap(_ptr.openCursor());
- }
- } else {
- if (direction === null) {
- return _wrap(_ptr.openCursor(_unwrap(range)));
- } else {
- return _wrap(_ptr.openCursor(_unwrap(range), _unwrap(direction)));
- }
- }
- throw "Incorrect number or type of arguments";
- }
-
- IDBRequest openKeyCursor([IDBKeyRange range = null, int direction = null]) {
- if (range === null) {
- if (direction === null) {
- return _wrap(_ptr.openKeyCursor());
- }
- } else {
- if (direction === null) {
- return _wrap(_ptr.openKeyCursor(_unwrap(range)));
- } else {
- return _wrap(_ptr.openKeyCursor(_unwrap(range), _unwrap(direction)));
- }
- }
- throw "Incorrect number or type of arguments";
- }
-}
« no previous file with comments | « client/html/generated/html/dartium/IDBFactory.dart ('k') | client/html/generated/html/dartium/IDBKey.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698