| Index: chrome/common/render_messages_internal.h
|
| ===================================================================
|
| --- chrome/common/render_messages_internal.h (revision 57922)
|
| +++ chrome/common/render_messages_internal.h (working copy)
|
| @@ -55,10 +55,6 @@
|
| class BlobData;
|
| }
|
|
|
| -namespace file_util {
|
| -struct FileInfo;
|
| -}
|
| -
|
| //-----------------------------------------------------------------------------
|
| // RenderView messages
|
| // These are messages sent from the browser to the renderer process.
|
| @@ -1018,16 +1014,11 @@
|
| string16 /* root_path */)
|
|
|
| // WebFileSystem response messages.
|
| - IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidSucceed,
|
| + IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_Succeeded,
|
| int /* request_id */)
|
| - IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidReadMetadata,
|
| + IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_Failed,
|
| int /* request_id */,
|
| - file_util::FileInfo)
|
| - IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidReadDirectory,
|
| - ViewMsg_FileSystem_DidReadDirectory_Params)
|
| - IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidFail,
|
| - int /* request_id */,
|
| - WebKit::WebFileError /* error_code */)
|
| + int /* error_code */)
|
|
|
| IPC_END_MESSAGES(View)
|
|
|
| @@ -2724,40 +2715,6 @@
|
| string16 /* src path */,
|
| string16 /* dest path */)
|
|
|
| - // WebFileSystem::copy() message.
|
| - IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy,
|
| - int /* request_id */,
|
| - string16 /* src path */,
|
| - string16 /* dest path */)
|
| -
|
| - // WebFileSystem::remove() message.
|
| - IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_Remove,
|
| - int /* request_id */,
|
| - string16 /* path */)
|
| -
|
| - // WebFileSystem::readMetadata() message.
|
| - IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadMetadata,
|
| - int /* request_id */,
|
| - string16 /* path */)
|
| -
|
| - // WebFileSystem::create() message.
|
| - IPC_MESSAGE_CONTROL4(ViewHostMsg_FileSystem_Create,
|
| - int /* request_id */,
|
| - string16 /* path */,
|
| - bool /* exclusive */,
|
| - bool /* is_directory */)
|
| -
|
| - // WebFileSystem::exists() messages.
|
| - IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Exists,
|
| - int /* request_id */,
|
| - string16 /* path */,
|
| - bool /* is_directory */)
|
| -
|
| - // WebFileSystem::readDirectory() message.
|
| - IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadDirectory,
|
| - int /* request_id */,
|
| - string16 /* path */)
|
| -
|
| //---------------------------------------------------------------------------
|
| // Blob messages:
|
|
|
|
|