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

Unified Diff: storage/common/blob_storage/blob_storage_constants.h

Issue 2516713002: [BlobStorage] Implementing disk. (Closed)
Patch Set: file flushing, stack track on reader error Created 4 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: storage/common/blob_storage/blob_storage_constants.h
diff --git a/storage/common/blob_storage/blob_storage_constants.h b/storage/common/blob_storage/blob_storage_constants.h
index f54d20aaa701aab134152616d7699c1aea04dd93..aa9ba4e4ebfaae2f0ac86846c4cb563e58571690 100644
--- a/storage/common/blob_storage/blob_storage_constants.h
+++ b/storage/common/blob_storage/blob_storage_constants.h
@@ -73,12 +73,13 @@ enum class BlobStatus {
// Blob state section:
// The blob has finished.
DONE = 200,
- // The system is pending on quota being granted, the transport layer
- // populating pending data, and/or copying data from dependent blobs. See
- // BlobEntry::BuildingState determine which of these are happening, as they
- // all can happen concurrently.
+ // Waiting for memory or file quota for the to-be transported data.
PENDING_QUOTA = 201,
+ // Waiting for data to be transported (quota has been granted).
PENDING_TRANSPORT = 202,
+ // Waiting for any operations involving dependent blobs after transport data
+ // has been populated. See BlobEntry::BuildingState for more info.
+ // TODO(dmurph): Change to PENDING_REFERENCED_BLOBS (crbug.com/670398).
PENDING_INTERNALS = 203,
LAST = PENDING_INTERNALS
};
« storage/browser/blob/blob_storage_context.cc ('K') | « storage/browser/blob/blob_storage_context.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698