Chromium Code Reviews| 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 e4abb511610c1b7d11ceb143b09144dc576c387c..3e302e3b9a527bcbf95f98a11749c11438a76737 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.multiEntry, |
|
jam
2011/12/02 20:36:04
multi_entry
|
| + *idb_transaction, *ec); |
| *index_id = *ec ? 0 : parent_->Add(index); |
| WebIDBObjectIDToURLMap* transaction_url_map = |
| &parent_->transaction_dispatcher_host_->transaction_url_map_; |