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