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

Side by Side Diff: storage/browser/blob/blob_transport_result.h

Issue 2448353002: [BlobAsync] Moving async handling into BlobStorageContext & quota out. (Closed)
Patch Set: comments Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef STORAGE_BROWSER_BLOB_BLOB_TRANSPORT_RESULT_H_
6 #define STORAGE_BROWSER_BLOB_BLOB_TRANSPORT_RESULT_H_
7
8 namespace storage {
9
10 // This 'result' enum is used in the blob transport logic.
11 enum class BlobTransportResult {
12 // This means we should flag the incoming IPC as a bad IPC.
13 BAD_IPC,
14 // Cancel reasons.
15 CANCEL_MEMORY_FULL,
16 CANCEL_FILE_ERROR,
17 CANCEL_REFERENCED_BLOB_BROKEN,
18 CANCEL_UNKNOWN,
19 // This means we're waiting on responses from the renderer.
20 PENDING_RESPONSES,
21 // We're done registering or transferring the blob.
22 DONE
23 };
24
25 } // namespace storage
26
27 #endif // STORAGE_BROWSER_BLOB_BLOB_TRANSPORT_RESULT_H_
OLDNEW
« no previous file with comments | « storage/browser/blob/blob_transport_request_builder.cc ('k') | storage/browser/blob/internal_blob_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698