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

Side by Side Diff: chrome/common/render_messages.h

Issue 7012007: Chrome side of having the WebKit FileSystem API use WebPermissionClient for checking if using fil... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 bool /* allowed */) 307 bool /* allowed */)
308 308
309 // Sent by the renderer process to check whether access to DOM Storage is 309 // Sent by the renderer process to check whether access to DOM Storage is
310 // granted by content settings. 310 // granted by content settings.
311 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_AllowDOMStorage, 311 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_AllowDOMStorage,
312 int /* render_view_id */, 312 int /* render_view_id */,
313 GURL /* origin_url */, 313 GURL /* origin_url */,
314 DOMStorageType /* type */, 314 DOMStorageType /* type */,
315 bool /* allowed */) 315 bool /* allowed */)
316 316
317 // Sent by the renderer process to check whether access to FileSystem is
318 // granted by content settings.
319 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_AllowFileSystem,
320 int /* render_view_id */,
321 GURL /* origin_url */,
322 bool /* allowed */)
323
317 // Sent by the renderer process to check whether access to Indexed DBis 324 // Sent by the renderer process to check whether access to Indexed DBis
318 // granted by content settings. 325 // granted by content settings.
319 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_AllowIndexedDB, 326 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_AllowIndexedDB,
320 int /* render_view_id */, 327 int /* render_view_id */,
321 string16 /* origin_url */, 328 string16 /* origin_url */,
322 string16 /* database name */, 329 string16 /* database name */,
323 bool /* allowed */) 330 bool /* allowed */)
324 331
325 // Specifies the URL as the first parameter (a wstring) and thumbnail as 332 // Specifies the URL as the first parameter (a wstring) and thumbnail as
326 // binary data as the second parameter. 333 // binary data as the second parameter.
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 int32 /* page_id */, 476 int32 /* page_id */,
470 bool /* result */) 477 bool /* result */)
471 478
472 // JavaScript related messages ----------------------------------------------- 479 // JavaScript related messages -----------------------------------------------
473 480
474 // Notify the JavaScript engine in the render to change its parameters 481 // Notify the JavaScript engine in the render to change its parameters
475 // while performing stress testing. 482 // while performing stress testing.
476 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 483 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
477 int /* cmd */, 484 int /* cmd */,
478 int /* param */) 485 int /* param */)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_message_filter.cc ('k') | chrome/renderer/chrome_render_view_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698