| Index: content/common/indexed_db/proxy_webidbobjectstore_impl.cc
|
| diff --git a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
|
| index ed70c41338f51ae5ae64f56bc49961145aa327a9..5340db66a1c07aefeda8ba9dbe70128e1c22dde4 100644
|
| --- a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
|
| +++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
|
| @@ -105,6 +105,18 @@ void RendererWebIDBObjectStoreImpl::deleteFunction(
|
| IndexedDBKey(key), callbacks, idb_object_store_id_, transaction, &ec);
|
| }
|
|
|
| +void RendererWebIDBObjectStoreImpl::deleteFunction(
|
| + const WebIDBKeyRange& key_range,
|
| + WebIDBCallbacks* callbacks,
|
| + const WebIDBTransaction& transaction,
|
| + WebExceptionCode& ec) {
|
| + IndexedDBDispatcher* dispatcher =
|
| + IndexedDBDispatcher::ThreadSpecificInstance();
|
| + dispatcher->RequestIDBObjectStoreDeleteRange(
|
| + IndexedDBKeyRange(key_range), callbacks, idb_object_store_id_,
|
| + transaction, &ec);
|
| +}
|
| +
|
| void RendererWebIDBObjectStoreImpl::clear(
|
| WebIDBCallbacks* callbacks,
|
| const WebIDBTransaction& transaction,
|
|
|