| 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 37548c8ff79357342a32185a9f9b662985a74186..fbeffe9483803188026be4f308a28a7ed716562f 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -229,6 +229,8 @@ 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;
|
| @@ -458,7 +460,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;
|
|
|
|
|