| Index: content/browser/indexed_db/indexed_db_database.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_database.cc b/content/browser/indexed_db/indexed_db_database.cc
|
| index ca13e95dbc151c70c4cee6a548773d9e4f02b851..239222981f051bdf405c00b47895af89dfa7e8cd 100644
|
| --- a/content/browser/indexed_db/indexed_db_database.cc
|
| +++ b/content/browser/indexed_db/indexed_db_database.cc
|
| @@ -1679,9 +1679,10 @@
|
| IndexedDBTransaction* transaction) {
|
| IDB_TRACE1("IndexedDBDatabase::DeleteRangeOperation", "txn.id",
|
| transaction->id());
|
| + size_t delete_count = 0;
|
| leveldb::Status s =
|
| backing_store_->DeleteRange(transaction->BackingStoreTransaction(), id(),
|
| - object_store_id, *key_range);
|
| + object_store_id, *key_range, &delete_count);
|
| if (!s.ok())
|
| return s;
|
| callbacks->OnSuccess();
|
|
|