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

Unified Diff: content/common/file_system_messages.h

Issue 6833007: More filesystem cleanup: convert URL-encoded-as-FilePath to actual URL, where (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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/file_system/webfilewriter_impl.cc ('k') | content/renderer/pepper_plugin_delegate_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/file_system_messages.h
===================================================================
--- content/common/file_system_messages.h (revision 81454)
+++ content/common/file_system_messages.h (working copy)
@@ -25,7 +25,7 @@
int /* request_id */,
bool /* accepted */,
std::string /* name */,
- FilePath /* root_path */)
+ GURL /* root_url */)
// WebFileSystem response messages.
IPC_MESSAGE_CONTROL1(FileSystemMsg_DidSucceed,
@@ -59,30 +59,30 @@
// WebFileSystem::move() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Move,
int /* request_id */,
- FilePath /* src path */,
- FilePath /* dest path */)
+ GURL /* src path */,
+ GURL /* dest path */)
// WebFileSystem::copy() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Copy,
int /* request_id */,
- FilePath /* src path */,
- FilePath /* dest path */)
+ GURL /* src path */,
+ GURL /* dest path */)
// WebFileSystem::remove() message.
IPC_MESSAGE_CONTROL3(FileSystemMsg_Remove,
int /* request_id */,
- FilePath /* path */,
+ GURL /* path */,
bool /* recursive */)
// WebFileSystem::readMetadata() message.
IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ReadMetadata,
int /* request_id */,
- FilePath /* path */)
+ GURL /* path */)
// WebFileSystem::create() message.
IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Create,
int /* request_id */,
- FilePath /* path */,
+ GURL /* path */,
bool /* exclusive */,
bool /* is_directory */,
bool /* recursive */)
@@ -90,31 +90,31 @@
// WebFileSystem::exists() messages.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Exists,
int /* request_id */,
- FilePath /* path */,
+ GURL /* path */,
bool /* is_directory */)
// WebFileSystem::readDirectory() message.
IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ReadDirectory,
int /* request_id */,
- FilePath /* path */)
+ GURL /* path */)
// WebFileWriter::write() message.
IPC_MESSAGE_CONTROL4(FileSystemHostMsg_Write,
int /* request id */,
- FilePath /* file path */,
+ GURL /* file path */,
GURL /* blob URL */,
int64 /* position */)
// WebFileWriter::truncate() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Truncate,
int /* request id */,
- FilePath /* file path */,
+ GURL /* file path */,
int64 /* length */)
// Pepper's Touch() message.
IPC_MESSAGE_CONTROL4(FileSystemHostMsg_TouchFile,
int /* request_id */,
- FilePath /* path */,
+ GURL /* path */,
base::Time /* last_access_time */,
base::Time /* last_modified_time */)
« no previous file with comments | « content/common/file_system/webfilewriter_impl.cc ('k') | content/renderer/pepper_plugin_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698