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

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

Issue 1234813004: [BlobAsync] Asynchronous Blob Construction Final Patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blob-protocol-change
Patch Set: comments/fixes Created 4 years, 11 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: 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 e77c8683527875b420adb80fd0b87b357b276dce..1ef41d39b31861121d75ffe6042ba25b5e9d748a 100644
--- a/storage/common/blob_storage/blob_storage_constants.h
+++ b/storage/common/blob_storage/blob_storage_constants.h
@@ -32,7 +32,9 @@ enum class IPCBlobCreationCancelCode {
UNKNOWN = 0,
OUT_OF_MEMORY,
FILE_WRITE_FAILED,
- LAST = FILE_WRITE_FAILED
+ // The renderer was destroyed while data was in transit.
+ SOURCE_DIED_IN_TRANSIT,
+ LAST = SOURCE_DIED_IN_TRANSIT
};
} // namespace storage

Powered by Google App Engine
This is Rietveld 408576698