| 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 // Tells InstantExtended to undo one most visited item deletion. | 740 // Tells InstantExtended to undo one most visited item deletion. |
| 741 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 741 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
| 742 int /* page_id */, | 742 int /* page_id */, |
| 743 GURL /* url */) | 743 GURL /* url */) |
| 744 | 744 |
| 745 // Tells InstantExtended whether the page supports voice search. | 745 // Tells InstantExtended whether the page supports voice search. |
| 746 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 746 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
| 747 int /* page_id */, | 747 int /* page_id */, |
| 748 bool /* supported */) | 748 bool /* supported */) |
| 749 | 749 |
| 750 // Tells the renderer a list of URLs which should be bounced back to the browser |
| 751 // process so that they can be assigned to an Instant renderer. |
| 752 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 753 std::vector<GURL> /* search_urls */, |
| 754 GURL /* new_tab_page_url */) |
| 755 |
| 750 // Tells listeners that a detailed message was reported to the console by | 756 // Tells listeners that a detailed message was reported to the console by |
| 751 // WebKit. | 757 // WebKit. |
| 752 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 758 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 753 string16 /* message */, | 759 string16 /* message */, |
| 754 string16 /* source */, | 760 string16 /* source */, |
| 755 extensions::StackTrace /* stack trace */, | 761 extensions::StackTrace /* stack trace */, |
| 756 int32 /* severity level */) | 762 int32 /* severity level */) |
| OLD | NEW |