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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 | 651 |
652 // Counts a mouseover event on an InstantExtended most visited tile. | 652 // Counts a mouseover event on an InstantExtended most visited tile. |
653 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CountMouseover, | 653 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CountMouseover, |
654 int /* page_id */) | 654 int /* page_id */) |
655 | 655 |
656 // Tells InstantExtended to set the omnibox focus state. | 656 // Tells InstantExtended to set the omnibox focus state. |
657 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, | 657 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, |
658 int /* page_id */, | 658 int /* page_id */, |
659 OmniboxFocusState /* state */) | 659 OmniboxFocusState /* state */) |
660 | 660 |
| 661 // Tells InstantExtended to paste clipboard content into the omnibox. |
| 662 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxPaste, |
| 663 int /* page_id */) |
| 664 |
661 // Tells InstantExtended whether the embedded search API is supported. | 665 // Tells InstantExtended whether the embedded search API is supported. |
662 // See http://dev.chromium.org/embeddedsearch | 666 // See http://dev.chromium.org/embeddedsearch |
663 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, | 667 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, |
664 int /* page_id */, | 668 int /* page_id */, |
665 bool /* result */) | 669 bool /* result */) |
666 | 670 |
667 // Tells InstantExtended to delete a most visited item. | 671 // Tells InstantExtended to delete a most visited item. |
668 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 672 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
669 int /* page_id */, | 673 int /* page_id */, |
670 GURL /* url */) | 674 GURL /* url */) |
(...skipping 13 matching lines...) Expand all Loading... |
684 | 688 |
685 // Tells InstantExtended to undo one most visited item deletion. | 689 // Tells InstantExtended to undo one most visited item deletion. |
686 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 690 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
687 int /* page_id */, | 691 int /* page_id */, |
688 GURL /* url */) | 692 GURL /* url */) |
689 | 693 |
690 // Tells InstantExtended whether the page supports voice search. | 694 // Tells InstantExtended whether the page supports voice search. |
691 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 695 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
692 int /* page_id */, | 696 int /* page_id */, |
693 bool /* supported */) | 697 bool /* supported */) |
OLD | NEW |