| Index: content/common/indexed_db/indexed_db_dispatcher.h
|
| diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h
|
| index 9651930d6c818527f6d671bf4f9eda011b699bd9..7fa5dab712f0a35be180ccbe103224fc0f4c2eed 100644
|
| --- a/content/common/indexed_db/indexed_db_dispatcher.h
|
| +++ b/content/common/indexed_db/indexed_db_dispatcher.h
|
| @@ -134,7 +134,7 @@ class CONTENT_EXPORT IndexedDBDispatcher
|
| bool key_only,
|
| WebKit::WebIDBCallbacks* callbacks);
|
|
|
| - void RequestIDBDatabasePut(
|
| + void RequestIDBDatabasePutOld(
|
| int32 ipc_database_id,
|
| int64 transaction_id,
|
| int64 object_store_id,
|
| @@ -146,6 +146,18 @@ class CONTENT_EXPORT IndexedDBDispatcher
|
| const WebKit::WebVector<WebKit::WebVector<
|
| WebKit::WebIDBKey> >& index_keys);
|
|
|
| + void RequestIDBDatabasePut(
|
| + int32 ipc_database_id,
|
| + int64 transaction_id,
|
| + int64 object_store_id,
|
| + const WebKit::WebData& value,
|
| + const IndexedDBKey& key,
|
| + WebKit::WebIDBDatabase::PutMode put_mode,
|
| + WebKit::WebIDBCallbacks* callbacks,
|
| + const WebKit::WebVector<long long>& index_ids,
|
| + const WebKit::WebVector<WebKit::WebVector<
|
| + WebKit::WebIDBKey> >& index_keys);
|
| +
|
| void RequestIDBDatabaseOpenCursor(
|
| int32 ipc_database_id,
|
| int64 transaction_id,
|
|
|