| 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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 976                     content::FrameOwnerProperties /* frame_owner_properties */) | 976                     content::FrameOwnerProperties /* frame_owner_properties */) | 
| 977 | 977 | 
| 978 // Request to continue running the sequential focus navigation algorithm in | 978 // Request to continue running the sequential focus navigation algorithm in | 
| 979 // this frame.  |source_routing_id| identifies the frame that issued this | 979 // this frame.  |source_routing_id| identifies the frame that issued this | 
| 980 // request.  This message is sent when pressing <tab> or <shift-tab> needs to | 980 // request.  This message is sent when pressing <tab> or <shift-tab> needs to | 
| 981 // find the next focusable element in a cross-process frame. | 981 // find the next focusable element in a cross-process frame. | 
| 982 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, | 982 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, | 
| 983                     blink::WebFocusType /* type */, | 983                     blink::WebFocusType /* type */, | 
| 984                     int32_t /* source_routing_id */) | 984                     int32_t /* source_routing_id */) | 
| 985 | 985 | 
|  | 986 // Tells the RenderFrame to advance the focus to next input node in the form by | 
|  | 987 // moving in specified direction if the currently focused node is a Text node | 
|  | 988 // (textfield, text area or content editable nodes). | 
|  | 989 IPC_MESSAGE_ROUTED1(FrameMsg_AdvanceFocusInForm, | 
|  | 990                     blink::WebFocusType /* direction for advancing focus */) | 
|  | 991 | 
| 986 // Sent when the user wants to search for a word on the page (find-in-page). | 992 // Sent when the user wants to search for a word on the page (find-in-page). | 
| 987 IPC_MESSAGE_ROUTED3(FrameMsg_Find, | 993 IPC_MESSAGE_ROUTED3(FrameMsg_Find, | 
| 988                     int /* request_id */, | 994                     int /* request_id */, | 
| 989                     base::string16 /* search_text */, | 995                     base::string16 /* search_text */, | 
| 990                     blink::WebFindOptions) | 996                     blink::WebFindOptions) | 
| 991 | 997 | 
| 992 // This message notifies the frame that it is no longer the active frame in the | 998 // This message notifies the frame that it is no longer the active frame in the | 
| 993 // current find session, and so it should clear its active find match (and no | 999 // current find session, and so it should clear its active find match (and no | 
| 994 // longer highlight it with special coloring). | 1000 // longer highlight it with special coloring). | 
| 995 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) | 1001 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) | 
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1691                     int /* nfr_request_id */, | 1697                     int /* nfr_request_id */, | 
| 1692                     float /* distance */) | 1698                     float /* distance */) | 
| 1693 | 1699 | 
| 1694 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1700 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 
| 1695 #endif | 1701 #endif | 
| 1696 | 1702 | 
| 1697 // Adding a new message? Stick to the sort order above: first platform | 1703 // Adding a new message? Stick to the sort order above: first platform | 
| 1698 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1704 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 
| 1699 // platform independent FrameHostMsg, then ifdefs for platform specific | 1705 // platform independent FrameHostMsg, then ifdefs for platform specific | 
| 1700 // FrameHostMsg. | 1706 // FrameHostMsg. | 
| OLD | NEW | 
|---|