| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stdint.h> | 6 #include <stdint.h> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 bool /* allowed */) | 377 bool /* allowed */) |
| 378 | 378 |
| 379 // Sent by the renderer process to check whether access to FileSystem is | 379 // Sent by the renderer process to check whether access to FileSystem is |
| 380 // granted by content settings. | 380 // granted by content settings. |
| 381 IPC_SYNC_MESSAGE_CONTROL3_1(ChromeViewHostMsg_RequestFileSystemAccessSync, | 381 IPC_SYNC_MESSAGE_CONTROL3_1(ChromeViewHostMsg_RequestFileSystemAccessSync, |
| 382 int /* render_frame_id */, | 382 int /* render_frame_id */, |
| 383 GURL /* origin_url */, | 383 GURL /* origin_url */, |
| 384 GURL /* top origin url */, | 384 GURL /* top origin url */, |
| 385 bool /* allowed */) | 385 bool /* allowed */) |
| 386 | 386 |
| 387 // Sent by the renderer process when a keygen element is rendered onto the | |
| 388 // current page. | |
| 389 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_DidUseKeygen, | |
| 390 GURL /* origin_url */) | |
| 391 | |
| 392 // Sent by the renderer process to check whether access to FileSystem is | 387 // Sent by the renderer process to check whether access to FileSystem is |
| 393 // granted by content settings. | 388 // granted by content settings. |
| 394 IPC_MESSAGE_CONTROL4(ChromeViewHostMsg_RequestFileSystemAccessAsync, | 389 IPC_MESSAGE_CONTROL4(ChromeViewHostMsg_RequestFileSystemAccessAsync, |
| 395 int /* render_frame_id */, | 390 int /* render_frame_id */, |
| 396 int /* request_id */, | 391 int /* request_id */, |
| 397 GURL /* origin_url */, | 392 GURL /* origin_url */, |
| 398 GURL /* top origin url */) | 393 GURL /* top origin url */) |
| 399 | 394 |
| 400 // Sent by the renderer process to check whether access to Indexed DBis | 395 // Sent by the renderer process to check whether access to Indexed DBis |
| 401 // granted by content settings. | 396 // granted by content settings. |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 // process so that they can be assigned to an Instant renderer. | 583 // process so that they can be assigned to an Instant renderer. |
| 589 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 584 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 590 std::vector<GURL> /* search_urls */, | 585 std::vector<GURL> /* search_urls */, |
| 591 GURL /* new_tab_page_url */) | 586 GURL /* new_tab_page_url */) |
| 592 | 587 |
| 593 #if BUILDFLAG(ENABLE_PLUGINS) | 588 #if BUILDFLAG(ENABLE_PLUGINS) |
| 594 // Sent by the renderer to check if crash reporting is enabled. | 589 // Sent by the renderer to check if crash reporting is enabled. |
| 595 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 590 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 596 bool /* enabled */) | 591 bool /* enabled */) |
| 597 #endif | 592 #endif |
| OLD | NEW |