| 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 | |
| 675 // The currently displayed PDF has an unsupported feature. | 669 // The currently displayed PDF has an unsupported feature. |
| 676 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 670 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
| 677 | 671 |
| 678 // Brings up SaveAs... dialog to save specified URL. | 672 // Brings up SaveAs... dialog to save specified URL. |
| 679 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, | 673 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PDFSaveURLAs, |
| 680 GURL /* url */, | 674 GURL /* url */, |
| 681 content::Referrer /* referrer */) | 675 content::Referrer /* referrer */) |
| 682 | 676 |
| 683 // Updates the content restrictions, i.e. to disable print/copy. | 677 // Updates the content restrictions, i.e. to disable print/copy. |
| 684 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, | 678 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_PDFUpdateContentRestrictions, |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 std::vector<GURL> /* search_urls */, | 772 std::vector<GURL> /* search_urls */, |
| 779 GURL /* new_tab_page_url */) | 773 GURL /* new_tab_page_url */) |
| 780 | 774 |
| 781 // Tells listeners that a detailed message was reported to the console by | 775 // Tells listeners that a detailed message was reported to the console by |
| 782 // WebKit. | 776 // WebKit. |
| 783 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 777 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 784 string16 /* message */, | 778 string16 /* message */, |
| 785 string16 /* source */, | 779 string16 /* source */, |
| 786 extensions::StackTrace /* stack trace */, | 780 extensions::StackTrace /* stack trace */, |
| 787 int32 /* severity level */) | 781 int32 /* severity level */) |
| OLD | NEW |