| 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..6d677bca5b7e4bc5c7f0621f3f0fbfdf9808af6f 100644
|
| --- a/storage/common/blob_storage/blob_storage_constants.h
|
| +++ b/storage/common/blob_storage/blob_storage_constants.h
|
| @@ -73,12 +73,12 @@ 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.
|
| PENDING_INTERNALS = 203,
|
| LAST = PENDING_INTERNALS
|
| };
|
|
|