| 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,
|
|
|