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

Unified Diff: chrome/common/render_messages_internal.h

Issue 3107026: Add IPC plumbing code for FileSystem API's openFileSystem (Closed)
Patch Set: nits fix + rebase 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/webkit_param_traits.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
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index 5c445c87ac8dfe79bfd42ef61965f84ce9b3629e..4a1520164e2634d014fef9923334751db1125feb 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -998,6 +998,13 @@ IPC_BEGIN_MESSAGES(View)
IPC_MESSAGE_ROUTED1(ViewMsg_DeviceOrientationUpdated,
ViewMsg_DeviceOrientationUpdated_Params)
+ // WebFrameClient::openFileSystem response messages.
+ IPC_MESSAGE_ROUTED4(ViewMsg_OpenFileSystemRequest_Complete,
+ int /* request_id */,
+ bool /* accepted */,
+ string16 /* name */,
+ string16 /* root_path */)
+
IPC_END_MESSAGES(View)
@@ -2650,4 +2657,12 @@ IPC_BEGIN_MESSAGES(ViewHost)
IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating,
int /* render_view_id */)
+//-----------------------------------------------------------------------------
+ // FileSystem API messages
+ // These are messages sent from the renderer to the browser process.
+
+ // WebFrameClient::openFileSystem() message.
+ IPC_MESSAGE_CONTROL1(ViewHostMsg_OpenFileSystemRequest,
+ ViewHostMsg_OpenFileSystemRequest_Params)
+
IPC_END_MESSAGES(ViewHost)
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/common/webkit_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698