diff options
Diffstat (limited to 'content/renderer')
-rw-r--r-- | content/renderer/renderer_webidbobjectstore_impl.cc | 2 | ||||
-rw-r--r-- | content/renderer/renderer_webidbobjectstore_impl.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/content/renderer/renderer_webidbobjectstore_impl.cc b/content/renderer/renderer_webidbobjectstore_impl.cc index 65db64e..94a0a48 100644 --- a/content/renderer/renderer_webidbobjectstore_impl.cc +++ b/content/renderer/renderer_webidbobjectstore_impl.cc @@ -119,12 +119,14 @@ WebIDBIndex* RendererWebIDBObjectStoreImpl::createIndex( const WebString& name, const WebString& key_path, bool unique, + bool multi_entry, const WebIDBTransaction& transaction, WebExceptionCode& ec) { IndexedDBHostMsg_ObjectStoreCreateIndex_Params params; params.name = name; params.key_path = key_path; params.unique = unique; + params.multi_entry = multi_entry; params.transaction_id = IndexedDBDispatcher::TransactionId(transaction); params.idb_object_store_id = idb_object_store_id_; diff --git a/content/renderer/renderer_webidbobjectstore_impl.h b/content/renderer/renderer_webidbobjectstore_impl.h index c95e5bf..21c922d 100644 --- a/content/renderer/renderer_webidbobjectstore_impl.h +++ b/content/renderer/renderer_webidbobjectstore_impl.h @@ -50,6 +50,7 @@ class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore { const WebKit::WebString& name, const WebKit::WebString& key_path, bool unique, + bool multi_entry, const WebKit::WebIDBTransaction& transaction, WebKit::WebExceptionCode& ec); // Transfers ownership of the WebIDBIndex to the caller. |