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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 int /* page_id */, | 686 int /* page_id */, |
687 bool /* result */) | 687 bool /* result */) |
688 | 688 |
689 IPC_MESSAGE_ROUTED5(ChromeViewHostMsg_SearchBoxNavigate, | 689 IPC_MESSAGE_ROUTED5(ChromeViewHostMsg_SearchBoxNavigate, |
690 int /* page_id */, | 690 int /* page_id */, |
691 GURL /* destination */, | 691 GURL /* destination */, |
692 content::PageTransition /* transition */, | 692 content::PageTransition /* transition */, |
693 WindowOpenDisposition /* disposition */, | 693 WindowOpenDisposition /* disposition */, |
694 bool /* is_search_type */) | 694 bool /* is_search_type */) |
695 | 695 |
| 696 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxLogIframeHover, |
| 697 int /* page_id */, |
| 698 int /* pos */) |
| 699 |
696 // Sent by the Instant overlay asking to show itself with the given height. | 700 // Sent by the Instant overlay asking to show itself with the given height. |
697 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_ShowInstantOverlay, | 701 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_ShowInstantOverlay, |
698 int /* page_id */, | 702 int /* page_id */, |
699 int /* height */, | 703 int /* height */, |
700 InstantSizeUnits /* units */) | 704 InstantSizeUnits /* units */) |
701 | 705 |
702 // Sent by Instant to focus the omnibox. | 706 // Sent by Instant to focus the omnibox. |
703 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, | 707 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, |
704 int /* page_id */, | 708 int /* page_id */, |
705 OmniboxFocusState /* state */) | 709 OmniboxFocusState /* state */) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 // previous SetCookie message to be processed. | 744 // previous SetCookie message to be processed. |
741 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 745 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
742 GURL /* url */, | 746 GURL /* url */, |
743 GURL /* first_party_for_cookies */, | 747 GURL /* first_party_for_cookies */, |
744 std::string /* cookies */) | 748 std::string /* cookies */) |
745 | 749 |
746 // Provide the browser process with current renderer framerate. | 750 // Provide the browser process with current renderer framerate. |
747 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 751 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
748 int /* routing id */, | 752 int /* routing id */, |
749 float /* frames per second */) | 753 float /* frames per second */) |
OLD | NEW |