Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(593)

Unified Diff: content/common/indexed_db/proxy_webidbobjectstore_impl.cc

Issue 10829339: Remove old chromium openCursor() glue (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/indexed_db/proxy_webidbobjectstore_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 46416d3fddede8a4e4283fe444e7dc1b9ccb19ba..84bb9a4c80df1a2ece3df39db3244b1505392964 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,
« no previous file with comments | « content/common/indexed_db/proxy_webidbobjectstore_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698