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