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

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

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | « content/common/fileapi/file_system_messages.h ('k') | content/common/fileapi/webblobregistry_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/fileapi/webblob_messages.h
===================================================================
--- content/common/fileapi/webblob_messages.h (revision 183651)
+++ content/common/fileapi/webblob_messages.h (working copy)
@@ -13,32 +13,25 @@
// Blob messages sent from the renderer to the browser.
-// Registers a blob as being built.
-IPC_MESSAGE_CONTROL1(BlobHostMsg_StartBuildingBlob,
- GURL /* url */)
-
-// Appends data to a blob being built.
-IPC_MESSAGE_CONTROL2(BlobHostMsg_AppendBlobDataItem,
- GURL /* url */,
+IPC_MESSAGE_CONTROL1(BlobHostMsg_StartBuildingBlob2,
+ std::string /*uuid */)
+IPC_MESSAGE_CONTROL2(BlobHostMsg_AppendBlobDataItem2,
+ std::string /* uuid */,
webkit_blob::BlobData::Item)
-
-// Appends data to a blob being built.
-IPC_SYNC_MESSAGE_CONTROL3_0(BlobHostMsg_SyncAppendSharedMemory,
- GURL /* url */,
+IPC_SYNC_MESSAGE_CONTROL3_0(BlobHostMsg_AppendSharedMemory2,
+ std::string /*uuid*/,
base::SharedMemoryHandle,
size_t /* buffer size */)
-
-// Finishes building a blob.
-IPC_MESSAGE_CONTROL2(BlobHostMsg_FinishBuildingBlob,
- GURL /* url */,
+IPC_MESSAGE_CONTROL2(BlobHostMsg_FinishBuildingBlob2,
+ std::string /* uuid */,
std::string /* content_type */)
-// Creates a new blob that's a clone of an existing src blob.
-// The source blob must be fully built.
-IPC_MESSAGE_CONTROL2(BlobHostMsg_CloneBlob,
- GURL /* url */,
- GURL /* src_url */)
-
-// Removes a blob.
-IPC_MESSAGE_CONTROL1(BlobHostMsg_RemoveBlob,
- GURL /* url */)
+IPC_MESSAGE_CONTROL1(BlobHostMsg_IncrementBlobRefCount,
+ std::string /* uuid */)
+IPC_MESSAGE_CONTROL1(BlobHostMsg_DecrementBlobRefCount,
+ std::string /* uuid */)
+IPC_MESSAGE_CONTROL2(BlobHostMsg_RegisterPublicBlobURL,
+ GURL,
+ std::string /* uuid */)
+IPC_MESSAGE_CONTROL1(BlobHostMsg_RevokePublicBlobURL,
+ GURL)
« no previous file with comments | « content/common/fileapi/file_system_messages.h ('k') | content/common/fileapi/webblobregistry_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698