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
parent 90b26104
......@@ -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,
......
......@@ -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*,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment