summaryrefslogtreecommitdiffstats
path: root/content/common/file_system_messages.h
diff options
context:
space:
mode:
authordmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-08 21:33:14 +0000
committerdmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-08 21:33:14 +0000
commit3c217ae1a9677660cacb51a21d88020f5bbb6047 (patch)
tree310b576bbcf02b1cb86a2d3b2f945dd75702f04f /content/common/file_system_messages.h
parent5b5c27201e819227c046ef2f8a434c52865fcb7d (diff)
downloadchromium_src-3c217ae1a9677660cacb51a21d88020f5bbb6047.zip
chromium_src-3c217ae1a9677660cacb51a21d88020f5bbb6047.tar.gz
chromium_src-3c217ae1a9677660cacb51a21d88020f5bbb6047.tar.bz2
Revert 80982, tests failing on Win XP
TBR=ericu BUG=None TEST=None Review URL: http://codereview.chromium.org/6821020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80991 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/file_system_messages.h')
-rw-r--r--content/common/file_system_messages.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/content/common/file_system_messages.h b/content/common/file_system_messages.h
index d91a7a6..173a885 100644
--- a/content/common/file_system_messages.h
+++ b/content/common/file_system_messages.h
@@ -25,7 +25,7 @@ IPC_MESSAGE_CONTROL4(FileSystemMsg_OpenComplete,
int /* request_id */,
bool /* accepted */,
std::string /* name */,
- GURL /* root_url */)
+ FilePath /* root_path */)
// WebFileSystem response messages.
IPC_MESSAGE_CONTROL1(FileSystemMsg_DidSucceed,
@@ -59,30 +59,30 @@ IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Open,
// WebFileSystem::move() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Move,
int /* request_id */,
- GURL /* src path */,
- GURL /* dest path */)
+ FilePath /* src path */,
+ FilePath /* dest path */)
// WebFileSystem::copy() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Copy,
int /* request_id */,
- GURL /* src path */,
- GURL /* dest path */)
+ FilePath /* src path */,
+ FilePath /* dest path */)
// WebFileSystem::remove() message.
IPC_MESSAGE_CONTROL3(FileSystemMsg_Remove,
int /* request_id */,
- GURL /* path */,
+ FilePath /* path */,
bool /* recursive */)
// WebFileSystem::readMetadata() message.
IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ReadMetadata,
int /* request_id */,
- GURL /* path */)
+ FilePath /* path */)
// WebFileSystem::create() message.
IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Create,
int /* request_id */,
- GURL /* path */,
+ FilePath /* path */,
bool /* exclusive */,
bool /* is_directory */,
bool /* recursive */)
@@ -90,31 +90,31 @@ IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Create,
// WebFileSystem::exists() messages.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Exists,
int /* request_id */,
- GURL /* path */,
+ FilePath /* path */,
bool /* is_directory */)
// WebFileSystem::readDirectory() message.
IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ReadDirectory,
int /* request_id */,
- GURL /* path */)
+ FilePath /* path */)
// WebFileWriter::write() message.
IPC_MESSAGE_CONTROL4(FileSystemHostMsg_Write,
int /* request id */,
- GURL /* file path */,
+ FilePath /* file path */,
GURL /* blob URL */,
int64 /* position */)
// WebFileWriter::truncate() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Truncate,
int /* request id */,
- GURL /* file path */,
+ FilePath /* file path */,
int64 /* length */)
// Pepper's Touch() message.
IPC_MESSAGE_CONTROL4(FileSystemHostMsg_TouchFile,
int /* request_id */,
- GURL /* path */,
+ FilePath /* path */,
base::Time /* last_access_time */,
base::Time /* last_modified_time */)