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

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

Issue 2967493002: Relanding [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Created 3 years, 5 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 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 content::FrameOwnerProperties /* frame_owner_properties */) 986 content::FrameOwnerProperties /* frame_owner_properties */)
987 987
988 // Request to continue running the sequential focus navigation algorithm in 988 // Request to continue running the sequential focus navigation algorithm in
989 // this frame. |source_routing_id| identifies the frame that issued this 989 // this frame. |source_routing_id| identifies the frame that issued this
990 // request. This message is sent when pressing <tab> or <shift-tab> needs to 990 // request. This message is sent when pressing <tab> or <shift-tab> needs to
991 // find the next focusable element in a cross-process frame. 991 // find the next focusable element in a cross-process frame.
992 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, 992 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus,
993 blink::WebFocusType /* type */, 993 blink::WebFocusType /* type */,
994 int32_t /* source_routing_id */) 994 int32_t /* source_routing_id */)
995 995
996 // Tells the RenderFrame to advance the focus to next input node in the form by
997 // moving in specified direction if the currently focused node is a Text node
998 // (textfield, text area or content editable nodes).
999 IPC_MESSAGE_ROUTED1(FrameMsg_AdvanceFocusInForm,
1000 blink::WebFocusType /* direction for advancing focus */)
1001
996 // Sent when the user wants to search for a word on the page (find-in-page). 1002 // Sent when the user wants to search for a word on the page (find-in-page).
997 IPC_MESSAGE_ROUTED3(FrameMsg_Find, 1003 IPC_MESSAGE_ROUTED3(FrameMsg_Find,
998 int /* request_id */, 1004 int /* request_id */,
999 base::string16 /* search_text */, 1005 base::string16 /* search_text */,
1000 blink::WebFindOptions) 1006 blink::WebFindOptions)
1001 1007
1002 // This message notifies the frame that it is no longer the active frame in the 1008 // This message notifies the frame that it is no longer the active frame in the
1003 // current find session, and so it should clear its active find match (and no 1009 // current find session, and so it should clear its active find match (and no
1004 // longer highlight it with special coloring). 1010 // longer highlight it with special coloring).
1005 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) 1011 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch)
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 int /* nfr_request_id */, 1710 int /* nfr_request_id */,
1705 float /* distance */) 1711 float /* distance */)
1706 1712
1707 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1713 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1708 #endif 1714 #endif
1709 1715
1710 // Adding a new message? Stick to the sort order above: first platform 1716 // Adding a new message? Stick to the sort order above: first platform
1711 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1717 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1712 // platform independent FrameHostMsg, then ifdefs for platform specific 1718 // platform independent FrameHostMsg, then ifdefs for platform specific
1713 // FrameHostMsg. 1719 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698