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

Unified Diff: content/browser/indexed_db/indexed_db_context_impl.cc

Issue 18023022: Blob support for IDB [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use ScopedVector and stl_utils for BlobDataHandles. Created 7 years 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
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;

Powered by Google App Engine
This is Rietveld 408576698