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

Unified Diff: content/common/fileapi/webblob_messages.h

Issue 1842313004: Fix multiple IPC fuzzer compile failures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | tools/ipc_fuzzer/fuzzer/fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/fileapi/webblob_messages.h
diff --git a/content/common/fileapi/webblob_messages.h b/content/common/fileapi/webblob_messages.h
index a60a52ba81bef12dc1b4f4193204d16a59780409..85dbf8c976c17d1cdd11158cbf30c2819fd2be7d 100644
--- a/content/common/fileapi/webblob_messages.h
+++ b/content/common/fileapi/webblob_messages.h
@@ -53,7 +53,7 @@ IPC_MESSAGE_CONTROL4(BlobStorageMsg_RegisterBlobUUID,
std::string /* uuid */,
std::string /* content_type */,
std::string /* content_disposition */,
- std::set<std::string> /* referenced_blob_uuids */);
+ std::set<std::string> /* referenced_blob_uuids */)
// The DataElements are used to:
// * describe & transport non-memory resources (blobs, files, etc)
@@ -63,25 +63,25 @@ IPC_MESSAGE_CONTROL4(BlobStorageMsg_RegisterBlobUUID,
// See https://bit.ly/BlobStorageRefactor
IPC_MESSAGE_CONTROL2(BlobStorageMsg_StartBuildingBlob,
std::string /* uuid */,
- std::vector<storage::DataElement> /* item_descriptions */);
+ std::vector<storage::DataElement> /* item_descriptions */)
IPC_MESSAGE_CONTROL4(
BlobStorageMsg_RequestMemoryItem,
std::string /* uuid */,
std::vector<storage::BlobItemBytesRequest> /* requests */,
std::vector<base::SharedMemoryHandle> /* memory_handles */,
- std::vector<IPC::PlatformFileForTransit> /* file_handles */);
+ std::vector<IPC::PlatformFileForTransit> /* file_handles */)
IPC_MESSAGE_CONTROL2(
BlobStorageMsg_MemoryItemResponse,
std::string /* uuid */,
- std::vector<storage::BlobItemBytesResponse> /* responses */);
+ std::vector<storage::BlobItemBytesResponse> /* responses */)
IPC_MESSAGE_CONTROL2(BlobStorageMsg_CancelBuildingBlob,
std::string /* uuid */,
- storage::IPCBlobCreationCancelCode /* code */);
+ storage::IPCBlobCreationCancelCode /* code */)
-IPC_MESSAGE_CONTROL1(BlobStorageMsg_DoneBuildingBlob, std::string /* uuid */);
+IPC_MESSAGE_CONTROL1(BlobStorageMsg_DoneBuildingBlob, std::string /* uuid */)
IPC_MESSAGE_CONTROL1(BlobHostMsg_IncrementRefCount,
std::string /* uuid */)
« no previous file with comments | « no previous file | tools/ipc_fuzzer/fuzzer/fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698