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

Unified Diff: storage/common/blob_storage/blob_item_bytes_response.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 Created 5 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_item_bytes_response.h
diff --git a/storage/common/blob_storage/blob_item_bytes_response.h b/storage/common/blob_storage/blob_item_bytes_response.h
index 344cc7db5e82d5a4943ab22e93f5e9ccda3b11cc..bad1660e32e791f61a2a45039d9daba1b6a12633 100644
--- a/storage/common/blob_storage/blob_item_bytes_response.h
+++ b/storage/common/blob_storage/blob_item_bytes_response.h
@@ -11,12 +11,13 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/time/time.h"
#include "storage/common/storage_common_export.h"
namespace storage {
// This class is serialized over IPC to send blob item data, or to signal that
-// the memory has been populated.
+// the memory has been populated in shared memory or a file.
struct STORAGE_COMMON_EXPORT BlobItemBytesResponse {
// not using std::numeric_limits<T>::max() because of non-C++11 builds.
static const size_t kInvalidIndex = SIZE_MAX;
@@ -32,6 +33,7 @@ struct STORAGE_COMMON_EXPORT BlobItemBytesResponse {
size_t request_number;
std::vector<char> inline_data;
+ base::Time time_file_modified;
};
STORAGE_COMMON_EXPORT void PrintTo(const BlobItemBytesResponse& response,

Powered by Google App Engine
This is Rietveld 408576698