| 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 | 635 |
| 636 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 636 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
| 637 // read/write operation from the DOM. | 637 // read/write operation from the DOM. |
| 638 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 638 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
| 639 GURL /* origin */, | 639 GURL /* origin */, |
| 640 bool /* allowed */) | 640 bool /* allowed */) |
| 641 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, | 641 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
| 642 GURL /* origin */, | 642 GURL /* origin */, |
| 643 bool /* allowed */) | 643 bool /* allowed */) |
| 644 | 644 |
| 645 // Sent by the renderer to check if a URL has permission to access WebGL |
| 646 // extension WEBGL_debug_renderer_info. |
| 647 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_IsWebGLDebugRendererInfoAllowed, |
| 648 GURL /* origin */, |
| 649 bool /* allowed */) |
| 650 |
| 645 // Sent when the renderer was prevented from displaying insecure content in | 651 // Sent when the renderer was prevented from displaying insecure content in |
| 646 // a secure page by a security policy. The page may appear incomplete. | 652 // a secure page by a security policy. The page may appear incomplete. |
| 647 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 653 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
| 648 | 654 |
| 649 // Sent when the renderer was prevented from running insecure content in | 655 // Sent when the renderer was prevented from running insecure content in |
| 650 // a secure origin by a security policy. The page may appear incomplete. | 656 // a secure origin by a security policy. The page may appear incomplete. |
| 651 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 657 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
| 652 | 658 |
| 653 #if defined(OS_ANDROID) | 659 #if defined(OS_ANDROID) |
| 654 // Contains info about whether the current page can be treated as a webapp. | 660 // Contains info about whether the current page can be treated as a webapp. |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 int /* page_id */, | 767 int /* page_id */, |
| 762 bool /* supported */) | 768 bool /* supported */) |
| 763 | 769 |
| 764 // Tells listeners that a detailed message was reported to the console by | 770 // Tells listeners that a detailed message was reported to the console by |
| 765 // WebKit. | 771 // WebKit. |
| 766 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 772 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 767 string16 /* message */, | 773 string16 /* message */, |
| 768 string16 /* source */, | 774 string16 /* source */, |
| 769 extensions::StackTrace /* stack trace */, | 775 extensions::StackTrace /* stack trace */, |
| 770 int32 /* severity level */) | 776 int32 /* severity level */) |
| OLD | NEW |