summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authoralecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-17 20:18:23 +0000
committeralecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-17 20:18:23 +0000
commit36228b033203079e4a3408b62dd379a21bd725b8 (patch)
treea682a1b91b65ff03a9682c88b4b4f38ae967b8d6 /content
parent90b261041cb60c6d7d534451496f866d120d10c0 (diff)
downloadchromium_src-36228b033203079e4a3408b62dd379a21bd725b8.zip
chromium_src-36228b033203079e4a3408b62dd379a21bd725b8.tar.gz
chromium_src-36228b033203079e4a3408b62dd379a21bd725b8.tar.bz2
Remove old chromium openCursor() glue
BUG=129471 Review URL: https://chromiumcodereview.appspot.com/10829339 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/common/indexed_db/proxy_webidbobjectstore_impl.cc13
-rw-r--r--content/common/indexed_db/proxy_webidbobjectstore_impl.h6
2 files changed, 0 insertions, 19 deletions
diff --git a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
index 46416d3..84bb9a4 100644
--- a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
+++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
@@ -201,19 +201,6 @@ void RendererWebIDBObjectStoreImpl::openCursor(
task_type, transaction, &ec);
}
-void RendererWebIDBObjectStoreImpl::openCursor(
- const WebIDBKeyRange& idb_key_range,
- unsigned short direction, WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- dispatcher->RequestIDBObjectStoreOpenCursor(
- idb_key_range, static_cast<WebKit::WebIDBCursor::Direction>(direction),
- callbacks, idb_object_store_id_,
- WebKit::WebIDBTransaction::NormalTask, transaction, &ec);
-}
-
void RendererWebIDBObjectStoreImpl::count(
const WebIDBKeyRange& idb_key_range,
WebIDBCallbacks* callbacks,
diff --git a/content/common/indexed_db/proxy_webidbobjectstore_impl.h b/content/common/indexed_db/proxy_webidbobjectstore_impl.h
index 509f5bf..ed99a25 100644
--- a/content/common/indexed_db/proxy_webidbobjectstore_impl.h
+++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.h
@@ -64,12 +64,6 @@ class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore {
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode& ec);
- virtual void openCursor(const WebKit::WebIDBKeyRange& range,
- unsigned short direction,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode& ec);
-
virtual void openCursor(const WebKit::WebIDBKeyRange&,
WebKit::WebIDBCursor::Direction direction,
WebKit::WebIDBCallbacks*,