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 <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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 | 636 |
637 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 637 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
638 // read/write operation from the DOM. | 638 // read/write operation from the DOM. |
639 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 639 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
640 GURL /* origin */, | 640 GURL /* origin */, |
641 bool /* allowed */) | 641 bool /* allowed */) |
642 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, | 642 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
643 GURL /* origin */, | 643 GURL /* origin */, |
644 bool /* allowed */) | 644 bool /* allowed */) |
645 | 645 |
| 646 // Sent by the renderer to check if a URL has permission to access WebGL |
| 647 // extension WEBGL_debug_renderer_info. |
| 648 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_IsWebGLDebugRendererInfoAllowed, |
| 649 GURL /* origin */, |
| 650 bool /* allowed */) |
| 651 |
646 // Sent when the renderer was prevented from displaying insecure content in | 652 // Sent when the renderer was prevented from displaying insecure content in |
647 // a secure page by a security policy. The page may appear incomplete. | 653 // a secure page by a security policy. The page may appear incomplete. |
648 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 654 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
649 | 655 |
650 // Sent when the renderer was prevented from running insecure content in | 656 // Sent when the renderer was prevented from running insecure content in |
651 // a secure origin by a security policy. The page may appear incomplete. | 657 // a secure origin by a security policy. The page may appear incomplete. |
652 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 658 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
653 | 659 |
654 #if defined(OS_ANDROID) | 660 #if defined(OS_ANDROID) |
655 // Contains info about whether the current page can be treated as a webapp. | 661 // Contains info about whether the current page can be treated as a webapp. |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 std::vector<GURL> /* search_urls */, | 778 std::vector<GURL> /* search_urls */, |
773 GURL /* new_tab_page_url */) | 779 GURL /* new_tab_page_url */) |
774 | 780 |
775 // Tells listeners that a detailed message was reported to the console by | 781 // Tells listeners that a detailed message was reported to the console by |
776 // WebKit. | 782 // WebKit. |
777 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 783 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
778 string16 /* message */, | 784 string16 /* message */, |
779 string16 /* source */, | 785 string16 /* source */, |
780 extensions::StackTrace /* stack trace */, | 786 extensions::StackTrace /* stack trace */, |
781 int32 /* severity level */) | 787 int32 /* severity level */) |
OLD | NEW |