summaryrefslogtreecommitdiffstats
path: root/content/common/indexed_db/indexed_db_dispatcher.h
diff options
context:
space:
mode:
authoralecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-23 21:11:50 +0000
committeralecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-23 21:11:50 +0000
commit6891785d326e1afadd1824784da10f01b0287fac (patch)
tree2b0012b5665427fe99af5c19694e1d5c3799e9ae /content/common/indexed_db/indexed_db_dispatcher.h
parent9ff39419c4f7be1a36a721a032146fe342bd54c4 (diff)
downloadchromium_src-6891785d326e1afadd1824784da10f01b0287fac.zip
chromium_src-6891785d326e1afadd1824784da10f01b0287fac.tar.gz
chromium_src-6891785d326e1afadd1824784da10f01b0287fac.tar.bz2
IndexedDB: remove proxy and IPC code for the IDBKey-based get/getKey.
This is purely removing code that is no longer called, since https://bugs.webkit.org/show_bug.cgi?id=83638 has been fixed. BUG=124650 Review URL: http://codereview.chromium.org/10179003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/indexed_db/indexed_db_dispatcher.h')
-rw-r--r--content/common/indexed_db/indexed_db_dispatcher.h24
1 files changed, 3 insertions, 21 deletions
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h
index 5c6d705..bbaa19c 100644
--- a/content/common/indexed_db/indexed_db_dispatcher.h
+++ b/content/common/indexed_db/indexed_db_dispatcher.h
@@ -142,39 +142,21 @@ class CONTENT_EXPORT IndexedDBDispatcher
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
- void RequestIDBIndexGetObject(const IndexedDBKey& key,
- WebKit::WebIDBCallbacks* callbacks,
- int32 idb_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBIndexGetObjectByRange(
+ void RequestIDBIndexGetObject(
const IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_index_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
- void RequestIDBIndexGetKey(const IndexedDBKey& key,
- WebKit::WebIDBCallbacks* callbacks,
- int32 idb_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBIndexGetKeyByRange(
+ void RequestIDBIndexGetKey(
const IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_index_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
- void RequestIDBObjectStoreGet(const IndexedDBKey& key,
- WebKit::WebIDBCallbacks* callbacks,
- int32 idb_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBObjectStoreGetByRange(
+ void RequestIDBObjectStoreGet(
const IndexedDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,
int32 idb_object_store_id,