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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 | 650 |
651 #if defined(OS_ANDROID) | 651 #if defined(OS_ANDROID) |
652 // Contains info about whether the current page can be treated as a webapp. | 652 // Contains info about whether the current page can be treated as a webapp. |
653 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveWebappInformation, | 653 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveWebappInformation, |
654 bool /* success */, | 654 bool /* success */, |
655 bool /* is_mobile_webapp_capable */, | 655 bool /* is_mobile_webapp_capable */, |
656 bool /* is_apple_mobile_webapp_capable */, | 656 bool /* is_apple_mobile_webapp_capable */, |
657 GURL /* expected_url */) | 657 GURL /* expected_url */) |
658 #endif // defined(OS_ANDROID) | 658 #endif // defined(OS_ANDROID) |
659 | 659 |
660 // Message sent from renderer to the browser when the element that is focused | |
661 // has been touched. A bool is passed in this message which indicates if the | |
662 // node is editable. | |
663 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched, | |
664 bool /* editable */) | |
665 | |
666 // The currently displayed PDF has an unsupported feature. | 660 // The currently displayed PDF has an unsupported feature. |
667 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 661 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
668 | 662 |
669 // Brings up SaveAs... dialog to save specified URL. | 663 // Brings up SaveAs... dialog to save specified URL. |
670 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, | 664 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, |
671 GURL /* url */, | 665 GURL /* url */, |
672 content::Referrer /* referrer */) | 666 content::Referrer /* referrer */) |
673 | 667 |
674 // Updates the content restrictions, i.e. to disable print/copy. | 668 // Updates the content restrictions, i.e. to disable print/copy. |
675 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, | 669 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
769 std::vector<GURL> /* search_urls */, | 763 std::vector<GURL> /* search_urls */, |
770 GURL /* new_tab_page_url */) | 764 GURL /* new_tab_page_url */) |
771 | 765 |
772 // Tells listeners that a detailed message was reported to the console by | 766 // Tells listeners that a detailed message was reported to the console by |
773 // WebKit. | 767 // WebKit. |
774 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 768 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
775 string16 /* message */, | 769 string16 /* message */, |
776 string16 /* source */, | 770 string16 /* source */, |
777 extensions::StackTrace /* stack trace */, | 771 extensions::StackTrace /* stack trace */, |
778 int32 /* severity level */) | 772 int32 /* severity level */) |
OLD | NEW |