Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: content/common/frame_messages.h

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 content::FrameOwnerProperties /* frame_owner_properties */) 950 content::FrameOwnerProperties /* frame_owner_properties */)
951 951
952 // Request to continue running the sequential focus navigation algorithm in 952 // Request to continue running the sequential focus navigation algorithm in
953 // this frame. |source_routing_id| identifies the frame that issued this 953 // this frame. |source_routing_id| identifies the frame that issued this
954 // request. This message is sent when pressing <tab> or <shift-tab> needs to 954 // request. This message is sent when pressing <tab> or <shift-tab> needs to
955 // find the next focusable element in a cross-process frame. 955 // find the next focusable element in a cross-process frame.
956 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, 956 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus,
957 blink::WebFocusType /* type */, 957 blink::WebFocusType /* type */,
958 int32_t /* source_routing_id */) 958 int32_t /* source_routing_id */)
959 959
960 // Tells the renderer to advance the focus to next input node in the form by
961 // moving in specified direction if the currently focused node is a Text node
962 // (textfield, text area or content editable nodes).
963 IPC_MESSAGE_ROUTED1(FrameMsg_AdvanceFocusInForm, bool /* forward */)
964
960 // Sent when the user wants to search for a word on the page (find-in-page). 965 // Sent when the user wants to search for a word on the page (find-in-page).
961 IPC_MESSAGE_ROUTED3(FrameMsg_Find, 966 IPC_MESSAGE_ROUTED3(FrameMsg_Find,
962 int /* request_id */, 967 int /* request_id */,
963 base::string16 /* search_text */, 968 base::string16 /* search_text */,
964 blink::WebFindOptions) 969 blink::WebFindOptions)
965 970
966 // This message notifies the frame that it is no longer the active frame in the 971 // This message notifies the frame that it is no longer the active frame in the
967 // current find session, and so it should clear its active find match (and no 972 // current find session, and so it should clear its active find match (and no
968 // longer highlight it with special coloring). 973 // longer highlight it with special coloring).
969 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) 974 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch)
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
1654 int /* nfr_request_id */, 1659 int /* nfr_request_id */,
1655 float /* distance */) 1660 float /* distance */)
1656 1661
1657 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1662 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1658 #endif 1663 #endif
1659 1664
1660 // Adding a new message? Stick to the sort order above: first platform 1665 // Adding a new message? Stick to the sort order above: first platform
1661 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1666 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1662 // platform independent FrameHostMsg, then ifdefs for platform specific 1667 // platform independent FrameHostMsg, then ifdefs for platform specific
1663 // FrameHostMsg. 1668 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698