diff options
Diffstat (limited to 'content/common/worker_messages.h')
-rw-r--r-- | content/common/worker_messages.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/content/common/worker_messages.h b/content/common/worker_messages.h index 3b1e79f..20e0d26 100644 --- a/content/common/worker_messages.h +++ b/content/common/worker_messages.h @@ -118,7 +118,7 @@ IPC_MESSAGE_CONTROL2(WorkerProcessHostMsg_SendQueuedMessages, std::vector<QueuedMessage> /* queued_messages */) // Sent by the worker process to check whether access to web databases is -// granted by content settings. +// allowed. IPC_SYNC_MESSAGE_CONTROL5_1(WorkerProcessHostMsg_AllowDatabase, int /* worker_route_id */, GURL /* origin url */, @@ -127,6 +127,12 @@ IPC_SYNC_MESSAGE_CONTROL5_1(WorkerProcessHostMsg_AllowDatabase, unsigned long /* estimated size */, bool /* result */) +// Sent by the worker process to check whether access to file system is allowed. +IPC_SYNC_MESSAGE_CONTROL2_1(WorkerProcessHostMsg_AllowFileSystem, + int /* worker_route_id */, + GURL /* origin url */, + bool /* result */) + //----------------------------------------------------------------------------- // Worker messages // These are messages sent from the renderer process to the worker process. |