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

Unified Diff: client/html/generated/html/dartium/IDBObjectStore.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/html/generated/html/dartium/IDBObjectStore.dart
diff --git a/client/html/generated/html/dartium/IDBObjectStore.dart b/client/html/generated/html/dartium/IDBObjectStore.dart
deleted file mode 100644
index e5c382922dcf9dda46cf9f60493f6f5602c50423..0000000000000000000000000000000000000000
--- a/client/html/generated/html/dartium/IDBObjectStore.dart
+++ /dev/null
@@ -1,90 +0,0 @@
-
-class _IDBObjectStoreImpl extends _DOMTypeBase implements IDBObjectStore {
- _IDBObjectStoreImpl._wrap(ptr) : super._wrap(ptr);
-
- List<String> get indexNames() => _wrap(_ptr.indexNames);
-
- String get keyPath() => _wrap(_ptr.keyPath);
-
- String get name() => _wrap(_ptr.name);
-
- IDBTransaction get transaction() => _wrap(_ptr.transaction);
-
- IDBRequest add(Dynamic value, [IDBKey key = null]) {
- if (key === null) {
- return _wrap(_ptr.add(_unwrap(value)));
- } else {
- return _wrap(_ptr.add(_unwrap(value), _unwrap(key)));
- }
- }
-
- IDBRequest clear() {
- return _wrap(_ptr.clear());
- }
-
- 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";
- }
-
- IDBIndex createIndex(String name, String keyPath) {
- return _wrap(_ptr.createIndex(_unwrap(name), _unwrap(keyPath)));
- }
-
- IDBRequest delete(var key_OR_keyRange) {
- if (key_OR_keyRange is IDBKeyRange) {
- return _wrap(_ptr.delete(_unwrap(key_OR_keyRange)));
- } else {
- if (key_OR_keyRange is IDBKey) {
- return _wrap(_ptr.delete(_unwrap(key_OR_keyRange)));
- }
- }
- throw "Incorrect number or type of arguments";
- }
-
- void deleteIndex(String name) {
- _ptr.deleteIndex(_unwrap(name));
- return;
- }
-
- IDBRequest getObject(IDBKey key) {
- return _wrap(_ptr.getObject(_unwrap(key)));
- }
-
- IDBIndex index(String name) {
- return _wrap(_ptr.index(_unwrap(name)));
- }
-
- 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 put(Dynamic value, [IDBKey key = null]) {
- if (key === null) {
- return _wrap(_ptr.put(_unwrap(value)));
- } else {
- return _wrap(_ptr.put(_unwrap(value), _unwrap(key)));
- }
- }
-}
« no previous file with comments | « client/html/generated/html/dartium/IDBKeyRange.dart ('k') | client/html/generated/html/dartium/IDBRequest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698