| Index: content/browser/indexed_db/indexed_db_context_impl.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_context_impl.cc b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| index ed5533031122fd866890a0c2b0097107cf2f99cb..503e5f9d04894d566cd35bfd9b656d16bb485c9a 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -234,6 +234,8 @@ base::ListValue* IndexedDBContextImpl::GetAllOriginsDetails() {
|
| else
|
| transaction_info->SetString("status", "started");
|
| break;
|
| + case IndexedDBTransaction::COMMITTING:
|
| + transaction_info->SetString("status", "committing");
|
| case IndexedDBTransaction::FINISHED:
|
| transaction_info->SetString("status", "finished");
|
| break;
|
| @@ -454,7 +456,7 @@ IndexedDBContextImpl::~IndexedDBContextImpl() {
|
| special_storage_policy_ &&
|
| special_storage_policy_->HasSessionOnlyOrigins();
|
|
|
| - // Clearning only session-only databases, and there are none.
|
| + // Clearing only session-only databases, and there are none.
|
| if (!has_session_only_databases)
|
| return;
|
|
|
|
|