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

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: Merged out--bot failed due to staleness. Created 6 years, 7 months 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 ed5533031122fd866890a0c2b0097107cf2f99cb..14d8e4de06e55f71a3d2ac1e736d82eb4db85141 100644
--- a/content/browser/indexed_db/indexed_db_context_impl.cc
+++ b/content/browser/indexed_db/indexed_db_context_impl.cc
@@ -234,6 +234,9 @@ base::ListValue* IndexedDBContextImpl::GetAllOriginsDetails() {
else
transaction_info->SetString("status", "started");
break;
+ case IndexedDBTransaction::COMMITTING:
+ transaction_info->SetString("status", "committing");
+ break;
case IndexedDBTransaction::FINISHED:
transaction_info->SetString("status", "finished");
break;
@@ -454,7 +457,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;
« no previous file with comments | « content/browser/indexed_db/indexed_db_backing_store_unittest.cc ('k') | content/browser/indexed_db/indexed_db_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698