| 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)));
|
| - }
|
| - }
|
| -}
|
|
|