| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 */) |
| OLD | NEW |