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