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

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

Issue 10831138: Remove a ton of IPC from landing putWithIndexKeys (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Additional stuff found with lint Created 8 years, 5 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
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 4e34db519ec0cd4e66ecd8920c348cd97e92b6ca..47da0df6f7e94373aff6440d1f0632d3728d2298 100644
--- a/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
+++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.cc
@@ -61,23 +61,6 @@ void RendererWebIDBObjectStoreImpl::get(
idb_object_store_id_, transaction, &ec);
}
-void RendererWebIDBObjectStoreImpl::put(
- const WebSerializedScriptValue& value,
- const WebIDBKey& key,
- PutMode put_mode,
- WebIDBCallbacks* callbacks,
- const WebIDBTransaction& transaction,
- WebExceptionCode& ec) {
- IndexedDBDispatcher* dispatcher =
- IndexedDBDispatcher::ThreadSpecificInstance();
- WebVector<WebString> emptyIndexNames;
- WebVector<WebVector<WebIDBKey> > emptyIndexKeys;
- dispatcher->RequestIDBObjectStorePut(
- SerializedScriptValue(value), IndexedDBKey(key),
- put_mode, callbacks, idb_object_store_id_, transaction,
- emptyIndexNames, emptyIndexKeys, &ec);
-}
-
void RendererWebIDBObjectStoreImpl::putWithIndexKeys(
const WebSerializedScriptValue& value,
const WebIDBKey& key,

Powered by Google App Engine
This is Rietveld 408576698