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

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

Issue 11312178: Remove legacy IDB backend IPC glue for string-based references. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add crbug link Created 8 years, 1 month 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_webidbtransaction_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_webidbtransaction_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbtransaction_impl.cc b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
index d72dc15bc28fa3d87d985e731b99003d8e431eb0..033c3e54ddcba2bab0cea4e06bf6617ef076ef31 100644
--- a/content/common/indexed_db/proxy_webidbtransaction_impl.cc
+++ b/content/common/indexed_db/proxy_webidbtransaction_impl.cc
@@ -33,18 +33,6 @@ RendererWebIDBTransactionImpl::~RendererWebIDBTransactionImpl() {
}
WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
- const WebString& name,
- WebKit::WebExceptionCode& ec) {
- int object_store_ipc_id;
- IndexedDBDispatcher::Send(
- new IndexedDBHostMsg_TransactionObjectStoreOld(
- idb_transaction_id_, name, &object_store_ipc_id, &ec));
- if (!object_store_ipc_id)
- return NULL;
- return new RendererWebIDBObjectStoreImpl(object_store_ipc_id);
-}
-
-WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
long long object_store_id,
WebKit::WebExceptionCode& ec) {
int idb_object_store_id;
« no previous file with comments | « content/common/indexed_db/proxy_webidbtransaction_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698