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

Unified Diff: content/common/fileapi/file_system_messages.h

Issue 23856002: SyncFS: Support resolveLocalFileSystemURL on SyncFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
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..fdc9a0bbbfde8dc92d8260dc094bb9ccc585cd41 100644
--- a/content/common/fileapi/file_system_messages.h
+++ b/content/common/fileapi/file_system_messages.h
@@ -32,6 +32,14 @@ IPC_MESSAGE_CONTROL3(FileSystemMsg_DidOpenFileSystem,
std::string /* name */,
GURL /* root_url */)
+// WebFrameClient::resolveURL response messages.
+IPC_MESSAGE_CONTROL5(FileSystemMsg_DidResolveURL,
+ int /* request_id */,
+ std::string /* name */,
+ GURL /* root_url */,
+ base::FilePath /* file_path */,
+ bool /* is_directory */)
+
// WebFileSystem response messages.
IPC_MESSAGE_CONTROL1(FileSystemMsg_DidSucceed,
int /* request_id */)
@@ -69,6 +77,11 @@ IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Open,
int64 /* requested_size */,
bool /* create */)
+// WevFrameClient::resolveURL() message.
+IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ResolveURL,
+ int /* request_id */,
+ GURL /* filesystem_url */)
+
// WebFrameClient::deleteFileSystem() message.
IPC_MESSAGE_CONTROL3(FileSystemHostMsg_DeleteFileSystem,
int /* request_id */,

Powered by Google App Engine
This is Rietveld 408576698