OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // IPC messages for interacting with frames. | 5 // IPC messages for interacting with frames. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
957 content::FrameOwnerProperties /* frame_owner_properties */) | 957 content::FrameOwnerProperties /* frame_owner_properties */) |
958 | 958 |
959 // Request to continue running the sequential focus navigation algorithm in | 959 // Request to continue running the sequential focus navigation algorithm in |
960 // this frame. |source_routing_id| identifies the frame that issued this | 960 // this frame. |source_routing_id| identifies the frame that issued this |
961 // request. This message is sent when pressing <tab> or <shift-tab> needs to | 961 // request. This message is sent when pressing <tab> or <shift-tab> needs to |
962 // find the next focusable element in a cross-process frame. | 962 // find the next focusable element in a cross-process frame. |
963 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, | 963 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, |
964 blink::WebFocusType /* type */, | 964 blink::WebFocusType /* type */, |
965 int32_t /* source_routing_id */) | 965 int32_t /* source_routing_id */) |
966 | 966 |
| 967 // Tells the RenderFrame to advance the focus to next input node in the form by |
| 968 // moving in specified direction if the currently focused node is a Text node |
| 969 // (textfield, text area or content editable nodes). |
| 970 IPC_MESSAGE_ROUTED1(FrameMsg_AdvanceFocusInForm, |
| 971 blink::WebFocusType /* direction for advancing focus */) |
| 972 |
967 // Sent when the user wants to search for a word on the page (find-in-page). | 973 // Sent when the user wants to search for a word on the page (find-in-page). |
968 IPC_MESSAGE_ROUTED3(FrameMsg_Find, | 974 IPC_MESSAGE_ROUTED3(FrameMsg_Find, |
969 int /* request_id */, | 975 int /* request_id */, |
970 base::string16 /* search_text */, | 976 base::string16 /* search_text */, |
971 blink::WebFindOptions) | 977 blink::WebFindOptions) |
972 | 978 |
973 // This message notifies the frame that it is no longer the active frame in the | 979 // This message notifies the frame that it is no longer the active frame in the |
974 // current find session, and so it should clear its active find match (and no | 980 // current find session, and so it should clear its active find match (and no |
975 // longer highlight it with special coloring). | 981 // longer highlight it with special coloring). |
976 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) | 982 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1656 int /* nfr_request_id */, | 1662 int /* nfr_request_id */, |
1657 float /* distance */) | 1663 float /* distance */) |
1658 | 1664 |
1659 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1665 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
1660 #endif | 1666 #endif |
1661 | 1667 |
1662 // Adding a new message? Stick to the sort order above: first platform | 1668 // Adding a new message? Stick to the sort order above: first platform |
1663 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1669 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1664 // platform independent FrameHostMsg, then ifdefs for platform specific | 1670 // platform independent FrameHostMsg, then ifdefs for platform specific |
1665 // FrameHostMsg. | 1671 // FrameHostMsg. |
OLD | NEW |