diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-12 18:15:30 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-12 18:15:30 +0000 |
commit | 45316d6f9cd510bd1b4604c38713272b2c8a7c9e (patch) | |
tree | 4055d1f19f436e9f1bf0d44a648e95e45b1e82d3 /content/common/worker_messages.h | |
parent | fd59f820f28a384de8f880237979e7fe28854040 (diff) | |
download | chromium_src-45316d6f9cd510bd1b4604c38713272b2c8a7c9e.zip chromium_src-45316d6f9cd510bd1b4604c38713272b2c8a7c9e.tar.gz chromium_src-45316d6f9cd510bd1b4604c38713272b2c8a7c9e.tar.bz2 |
Chrome side of having the WebKit FileSystem API use WebPermissionClient for checking if using file system is fine. Depends on https://bugs.webkit.org/show_bug.cgi?id=60683
BUG=76793
Review URL: http://codereview.chromium.org/7012007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85153 0039d316-1c4b-4281-b951-d872f2087c98
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. |