| Index: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| index f52166702e9b84dea736622af55b3359d7184fcd..d03b1d6fcf36b161cba143b9248be2b0cf7312a9 100644
|
| --- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| +++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| @@ -797,7 +797,8 @@ void IndexedDBDispatcherHost::ObjectStoreDispatcherHost::OnCreateIndex(
|
|
|
| *ec = 0;
|
| WebIDBIndex* index = idb_object_store->createIndex(
|
| - params.name, params.key_path, params.unique, *idb_transaction, *ec);
|
| + params.name, params.key_path, params.unique, params.multi_entry,
|
| + *idb_transaction, *ec);
|
| *index_id = *ec ? 0 : parent_->Add(index);
|
| WebIDBObjectIDToURLMap* transaction_url_map =
|
| &parent_->transaction_dispatcher_host_->transaction_url_map_;
|
|
|