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 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions, | 645 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions, |
646 int /* page_id */, | 646 int /* page_id */, |
647 std::vector<InstantSuggestion> /* suggestions */) | 647 std::vector<InstantSuggestion> /* suggestions */) |
648 | 648 |
649 // Sent by the Instant preview indicating whether the page supports the Instant | 649 // Sent by the Instant preview indicating whether the page supports the Instant |
650 // API or not (http://dev.chromium.org/searchbox). | 650 // API or not (http://dev.chromium.org/searchbox). |
651 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, | 651 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, |
652 int /* page_id */, | 652 int /* page_id */, |
653 bool /* result */) | 653 bool /* result */) |
654 | 654 |
| 655 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxNavigate, |
| 656 int /* page_id */, |
| 657 GURL /* destination */); |
| 658 |
655 // Sent by the Instant preview asking to show itself with the given height. | 659 // Sent by the Instant preview asking to show itself with the given height. |
656 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, | 660 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, |
657 int /* page_id */, | 661 int /* page_id */, |
658 InstantShownReason /* reason */, | 662 InstantShownReason /* reason */, |
659 int /* height */, | 663 int /* height */, |
660 InstantSizeUnits /* units */) | 664 InstantSizeUnits /* units */) |
661 | 665 |
662 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_StartCapturingKeyStrokes, | 666 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_StartCapturingKeyStrokes, |
663 int /* page_id */) | 667 int /* page_id */) |
664 | 668 |
(...skipping 23 matching lines...) Expand all Loading... |
688 // previous SetCookie message to be processed. | 692 // previous SetCookie message to be processed. |
689 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 693 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
690 GURL /* url */, | 694 GURL /* url */, |
691 GURL /* first_party_for_cookies */, | 695 GURL /* first_party_for_cookies */, |
692 std::string /* cookies */) | 696 std::string /* cookies */) |
693 | 697 |
694 // Provide the browser process with current renderer framerate. | 698 // Provide the browser process with current renderer framerate. |
695 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 699 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
696 int /* routing id */, | 700 int /* routing id */, |
697 float /* frames per second */) | 701 float /* frames per second */) |
OLD | NEW |