Chromium Code Reviews| 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 665 | 665 |
| 666 // Counts a mouseover event on an InstantExtended most visited tile. | 666 // Counts a mouseover event on an InstantExtended most visited tile. |
| 667 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CountMouseover, | 667 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CountMouseover, |
| 668 int /* page_id */) | 668 int /* page_id */) |
| 669 | 669 |
| 670 // Tells InstantExtended to set the omnibox focus state. | 670 // Tells InstantExtended to set the omnibox focus state. |
| 671 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, | 671 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, |
| 672 int /* page_id */, | 672 int /* page_id */, |
| 673 OmniboxFocusState /* state */) | 673 OmniboxFocusState /* state */) |
| 674 | 674 |
| 675 // Tells InstantExtended to paste the text or the clipboard content if text is | |
|
samarth
2013/08/06 18:39:44
nit: Tells InstantExtended to paste text into the
jfweitz
2013/08/09 02:37:41
Done.
| |
| 676 // empty into the omnibox. | |
| 677 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxPaste, | |
|
samarth
2013/08/06 18:39:44
Perhaps PasteAndOpenDropdown to make it clearer an
jfweitz
2013/08/09 02:37:41
Done.
| |
| 678 int /* page_id */, | |
| 679 string16 /* text to be pasted */) | |
| 680 | |
| 675 // Tells InstantExtended whether the embedded search API is supported. | 681 // Tells InstantExtended whether the embedded search API is supported. |
| 676 // See http://dev.chromium.org/embeddedsearch | 682 // See http://dev.chromium.org/embeddedsearch |
| 677 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, | 683 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, |
| 678 int /* page_id */, | 684 int /* page_id */, |
| 679 bool /* result */) | 685 bool /* result */) |
| 680 | 686 |
| 681 // Tells InstantExtended to delete a most visited item. | 687 // Tells InstantExtended to delete a most visited item. |
| 682 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 688 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
| 683 int /* page_id */, | 689 int /* page_id */, |
| 684 GURL /* url */) | 690 GURL /* url */) |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 698 | 704 |
| 699 // Tells InstantExtended to undo one most visited item deletion. | 705 // Tells InstantExtended to undo one most visited item deletion. |
| 700 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 706 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
| 701 int /* page_id */, | 707 int /* page_id */, |
| 702 GURL /* url */) | 708 GURL /* url */) |
| 703 | 709 |
| 704 // Tells InstantExtended whether the page supports voice search. | 710 // Tells InstantExtended whether the page supports voice search. |
| 705 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 711 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
| 706 int /* page_id */, | 712 int /* page_id */, |
| 707 bool /* supported */) | 713 bool /* supported */) |
| OLD | NEW |