Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Unified Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc

Issue 8743001: IndexedDB: Add support for IDBIndex multientry flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename multientry->multiEntry Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/common/indexed_db_messages.h » ('j') | content/common/indexed_db_messages.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | content/common/indexed_db_messages.h » ('j') | content/common/indexed_db_messages.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698