Index: content/common/fileapi/file_system_messages.h |
diff --git a/content/common/fileapi/file_system_messages.h b/content/common/fileapi/file_system_messages.h |
index a2d25003196365c653499059120a1b22a7296a05..12a3f17b1a75bec4338671bc202ecb8d8e7f34e3 100644 |
--- a/content/common/fileapi/file_system_messages.h |
+++ b/content/common/fileapi/file_system_messages.h |
@@ -118,12 +118,19 @@ IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ReadDirectory, |
GURL /* path */) |
// WebFileWriter::write() message. |
-IPC_MESSAGE_CONTROL4(FileSystemHostMsg_Write, |
+IPC_MESSAGE_CONTROL4(FileSystemHostMsg_WriteDeprecated, |
int /* request id */, |
GURL /* file path */, |
GURL /* blob URL */, |
int64 /* position */) |
+// WebFileWriter::write() message. |
+IPC_MESSAGE_CONTROL4(FileSystemHostMsg_Write, |
+ int /* request id */, |
+ GURL /* file path */, |
+ std::string /* blob uuid */, |
+ int64 /* position */) |
+ |
// WebFileWriter::truncate() message. |
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Truncate, |
int /* request id */, |