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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
641 // Sent when the renderer was prevented from running insecure content in | 641 // Sent when the renderer was prevented from running insecure content in |
642 // a secure origin by a security policy. The page may appear incomplete. | 642 // a secure origin by a security policy. The page may appear incomplete. |
643 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 643 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
644 | 644 |
645 #if defined(OS_ANDROID) | 645 #if defined(OS_ANDROID) |
646 // Contains info about whether the current page can be treated as a webapp. | 646 // Contains info about whether the current page can be treated as a webapp. |
647 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_DidRetrieveWebappInformation, | 647 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_DidRetrieveWebappInformation, |
648 bool /* success */, | 648 bool /* success */, |
649 bool /* is_webapp_capable */, | 649 bool /* is_webapp_capable */, |
650 GURL /* expected_url */) | 650 GURL /* expected_url */) |
651 | |
ddorwin
2013/09/16 17:58:10
Remove file from CL?
qinmin
2013/09/17 19:21:06
Done.
| |
651 #endif // defined(OS_ANDROID) | 652 #endif // defined(OS_ANDROID) |
652 | 653 |
653 // Message sent from renderer to the browser when the element that is focused | 654 // Message sent from renderer to the browser when the element that is focused |
654 // has been touched. A bool is passed in this message which indicates if the | 655 // has been touched. A bool is passed in this message which indicates if the |
655 // node is editable. | 656 // node is editable. |
656 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched, | 657 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched, |
657 bool /* editable */) | 658 bool /* editable */) |
658 | 659 |
659 // The currently displayed PDF has an unsupported feature. | 660 // The currently displayed PDF has an unsupported feature. |
660 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 661 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
747 int /* page_id */, | 748 int /* page_id */, |
748 bool /* supported */) | 749 bool /* supported */) |
749 | 750 |
750 // Tells listeners that a detailed message was reported to the console by | 751 // Tells listeners that a detailed message was reported to the console by |
751 // WebKit. | 752 // WebKit. |
752 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 753 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
753 string16 /* message */, | 754 string16 /* message */, |
754 string16 /* source */, | 755 string16 /* source */, |
755 extensions::StackTrace /* stack trace */, | 756 extensions::StackTrace /* stack trace */, |
756 int32 /* severity level */) | 757 int32 /* severity level */) |
OLD | NEW |