| Index: content/common/indexed_db/proxy_webidbindex_impl.cc
|
| diff --git a/content/common/indexed_db/proxy_webidbindex_impl.cc b/content/common/indexed_db/proxy_webidbindex_impl.cc
|
| index 9171e27b48b7cbb02f304f9f6ccc5573abc55554..ef9b4f6087f5e4bb1c80aae2bacef666b47aa58e 100644
|
| --- a/content/common/indexed_db/proxy_webidbindex_impl.cc
|
| +++ b/content/common/indexed_db/proxy_webidbindex_impl.cc
|
| @@ -100,45 +100,23 @@ void RendererWebIDBIndexImpl::count(
|
| }
|
|
|
| void RendererWebIDBIndexImpl::getObject(
|
| - const WebKit::WebIDBKey& key,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebExceptionCode& ec) {
|
| - IndexedDBDispatcher* dispatcher =
|
| - IndexedDBDispatcher::ThreadSpecificInstance();
|
| - dispatcher->RequestIDBIndexGetObject(
|
| - IndexedDBKey(key), callbacks, idb_index_id_, transaction, &ec);
|
| -}
|
| -
|
| -void RendererWebIDBIndexImpl::getObject(
|
| const WebKit::WebIDBKeyRange& key_range,
|
| WebKit::WebIDBCallbacks* callbacks,
|
| const WebKit::WebIDBTransaction& transaction,
|
| WebExceptionCode& ec) {
|
| IndexedDBDispatcher* dispatcher =
|
| IndexedDBDispatcher::ThreadSpecificInstance();
|
| - dispatcher->RequestIDBIndexGetObjectByRange(
|
| + dispatcher->RequestIDBIndexGetObject(
|
| IndexedDBKeyRange(key_range), callbacks, idb_index_id_, transaction, &ec);
|
| }
|
|
|
| void RendererWebIDBIndexImpl::getKey(
|
| - const WebKit::WebIDBKey& key,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebExceptionCode& ec) {
|
| - IndexedDBDispatcher* dispatcher =
|
| - IndexedDBDispatcher::ThreadSpecificInstance();
|
| - dispatcher->RequestIDBIndexGetKey(
|
| - IndexedDBKey(key), callbacks, idb_index_id_, transaction, &ec);
|
| -}
|
| -
|
| -void RendererWebIDBIndexImpl::getKey(
|
| const WebKit::WebIDBKeyRange& key_range,
|
| WebKit::WebIDBCallbacks* callbacks,
|
| const WebKit::WebIDBTransaction& transaction,
|
| WebExceptionCode& ec) {
|
| IndexedDBDispatcher* dispatcher =
|
| IndexedDBDispatcher::ThreadSpecificInstance();
|
| - dispatcher->RequestIDBIndexGetKeyByRange(
|
| + dispatcher->RequestIDBIndexGetKey(
|
| IndexedDBKeyRange(key_range), callbacks, idb_index_id_, transaction, &ec);
|
| }
|
|
|