| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 bool /* allowed */) | 380 bool /* allowed */) |
| 381 | 381 |
| 382 // Sent by the renderer process to check whether access to FileSystem is | 382 // Sent by the renderer process to check whether access to FileSystem is |
| 383 // granted by content settings. | 383 // granted by content settings. |
| 384 IPC_SYNC_MESSAGE_CONTROL3_1(ChromeViewHostMsg_RequestFileSystemAccessSync, | 384 IPC_SYNC_MESSAGE_CONTROL3_1(ChromeViewHostMsg_RequestFileSystemAccessSync, |
| 385 int /* render_frame_id */, | 385 int /* render_frame_id */, |
| 386 GURL /* origin_url */, | 386 GURL /* origin_url */, |
| 387 GURL /* top origin url */, | 387 GURL /* top origin url */, |
| 388 bool /* allowed */) | 388 bool /* allowed */) |
| 389 | 389 |
| 390 // Sent by the renderer process when a keygen element is rendered onto the | |
| 391 // current page. | |
| 392 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_DidUseKeygen, | |
| 393 GURL /* origin_url */) | |
| 394 | |
| 395 // Sent by the renderer process to check whether access to FileSystem is | 390 // Sent by the renderer process to check whether access to FileSystem is |
| 396 // granted by content settings. | 391 // granted by content settings. |
| 397 IPC_MESSAGE_CONTROL4(ChromeViewHostMsg_RequestFileSystemAccessAsync, | 392 IPC_MESSAGE_CONTROL4(ChromeViewHostMsg_RequestFileSystemAccessAsync, |
| 398 int /* render_frame_id */, | 393 int /* render_frame_id */, |
| 399 int /* request_id */, | 394 int /* request_id */, |
| 400 GURL /* origin_url */, | 395 GURL /* origin_url */, |
| 401 GURL /* top origin url */) | 396 GURL /* top origin url */) |
| 402 | 397 |
| 403 // Sent by the renderer process to check whether access to Indexed DBis | 398 // Sent by the renderer process to check whether access to Indexed DBis |
| 404 // granted by content settings. | 399 // granted by content settings. |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 | 590 |
| 596 #if BUILDFLAG(ENABLE_PLUGINS) | 591 #if BUILDFLAG(ENABLE_PLUGINS) |
| 597 // Sent by the renderer to check if crash reporting is enabled. | 592 // Sent by the renderer to check if crash reporting is enabled. |
| 598 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 593 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 599 bool /* enabled */) | 594 bool /* enabled */) |
| 600 #endif | 595 #endif |
| 601 | 596 |
| 602 // Sent by the renderer to indicate that a fields trial has been activated. | 597 // Sent by the renderer to indicate that a fields trial has been activated. |
| 603 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 598 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
| 604 std::string /* name */) | 599 std::string /* name */) |
| OLD | NEW |