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