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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 | 659 |
660 #if defined(OS_ANDROID) | 660 #if defined(OS_ANDROID) |
661 // 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. |
662 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveWebappInformation, | 662 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveWebappInformation, |
663 bool /* success */, | 663 bool /* success */, |
664 bool /* is_mobile_webapp_capable */, | 664 bool /* is_mobile_webapp_capable */, |
665 bool /* is_apple_mobile_webapp_capable */, | 665 bool /* is_apple_mobile_webapp_capable */, |
666 GURL /* expected_url */) | 666 GURL /* expected_url */) |
667 #endif // defined(OS_ANDROID) | 667 #endif // defined(OS_ANDROID) |
668 | 668 |
| 669 // Message sent from renderer to the browser when the element that is focused |
| 670 // has been touched. A bool is passed in this message which indicates if the |
| 671 // node is editable. |
| 672 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FocusedNodeTouched, |
| 673 bool /* editable */) |
| 674 |
669 // The currently displayed PDF has an unsupported feature. | 675 // The currently displayed PDF has an unsupported feature. |
670 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 676 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
671 | 677 |
672 // Brings up SaveAs... dialog to save specified URL. | 678 // Brings up SaveAs... dialog to save specified URL. |
673 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, | 679 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, |
674 GURL /* url */, | 680 GURL /* url */, |
675 content::Referrer /* referrer */) | 681 content::Referrer /* referrer */) |
676 | 682 |
677 // Updates the content restrictions, i.e. to disable print/copy. | 683 // Updates the content restrictions, i.e. to disable print/copy. |
678 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, | 684 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, |
(...skipping 93 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 |