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

Unified Diff: chrome/common/render_messages_internal.h

Issue 3245010: Revert 57915 - Add final part of IPC plumbing for FileSystem API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 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 | « chrome/common/render_messages.h ('k') | chrome/common/render_messages_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/common/render_messages_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698