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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions, | 614 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions, |
615 int /* page_id */, | 615 int /* page_id */, |
616 std::vector<InstantSuggestion> /* suggestions */) | 616 std::vector<InstantSuggestion> /* suggestions */) |
617 | 617 |
618 // Sent by the Instant preview indicating whether the page supports the Instant | 618 // Sent by the Instant preview indicating whether the page supports the Instant |
619 // API or not (http://dev.chromium.org/searchbox). | 619 // API or not (http://dev.chromium.org/searchbox). |
620 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, | 620 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, |
621 int /* page_id */, | 621 int /* page_id */, |
622 bool /* result */) | 622 bool /* result */) |
623 | 623 |
| 624 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_OnWebSearchBoxFocusChange, |
| 625 int /* page_id */, |
| 626 bool /* is_focused */) |
| 627 |
624 // Sent by the Instant preview asking to show itself with the given height. | 628 // Sent by the Instant preview asking to show itself with the given height. |
625 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, | 629 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, |
626 int /* page_id */, | 630 int /* page_id */, |
627 InstantShownReason /* reason */, | 631 InstantShownReason /* reason */, |
628 int /* height */, | 632 int /* height */, |
629 InstantSizeUnits /* units */) | 633 InstantSizeUnits /* units */) |
630 | 634 |
631 // The currently displayed PDF has an unsupported feature. | 635 // The currently displayed PDF has an unsupported feature. |
632 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 636 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
633 | 637 |
(...skipping 17 matching lines...) Expand all Loading... |
651 // previous SetCookie message to be processed. | 655 // previous SetCookie message to be processed. |
652 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 656 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
653 GURL /* url */, | 657 GURL /* url */, |
654 GURL /* first_party_for_cookies */, | 658 GURL /* first_party_for_cookies */, |
655 std::string /* cookies */) | 659 std::string /* cookies */) |
656 | 660 |
657 // Provide the browser process with current renderer framerate. | 661 // Provide the browser process with current renderer framerate. |
658 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 662 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
659 int /* routing id */, | 663 int /* routing id */, |
660 float /* frames per second */) | 664 float /* frames per second */) |
OLD | NEW |