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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Fixed the build break by replacing WebViewImpl object with WebViewBase Created 3 years, 7 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 951 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 content::FrameOwnerProperties /* frame_owner_properties */) 962 content::FrameOwnerProperties /* frame_owner_properties */)
963 963
964 // Request to continue running the sequential focus navigation algorithm in 964 // Request to continue running the sequential focus navigation algorithm in
965 // this frame. |source_routing_id| identifies the frame that issued this 965 // this frame. |source_routing_id| identifies the frame that issued this
966 // request. This message is sent when pressing <tab> or <shift-tab> needs to 966 // request. This message is sent when pressing <tab> or <shift-tab> needs to
967 // find the next focusable element in a cross-process frame. 967 // find the next focusable element in a cross-process frame.
968 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus, 968 IPC_MESSAGE_ROUTED2(FrameMsg_AdvanceFocus,
969 blink::WebFocusType /* type */, 969 blink::WebFocusType /* type */,
970 int32_t /* source_routing_id */) 970 int32_t /* source_routing_id */)
971 971
972 // Tells the RenderFrame to advance the focus to next input node in the form by
973 // moving in specified direction if the currently focused node is a Text node
974 // (textfield, text area or content editable nodes).
975 IPC_MESSAGE_ROUTED1(FrameMsg_AdvanceFocusInForm,
976 blink::WebFocusType /* direction for advancing focus */)
977
972 // Sent when the user wants to search for a word on the page (find-in-page). 978 // Sent when the user wants to search for a word on the page (find-in-page).
973 IPC_MESSAGE_ROUTED3(FrameMsg_Find, 979 IPC_MESSAGE_ROUTED3(FrameMsg_Find,
974 int /* request_id */, 980 int /* request_id */,
975 base::string16 /* search_text */, 981 base::string16 /* search_text */,
976 blink::WebFindOptions) 982 blink::WebFindOptions)
977 983
978 // This message notifies the frame that it is no longer the active frame in the 984 // This message notifies the frame that it is no longer the active frame in the
979 // current find session, and so it should clear its active find match (and no 985 // current find session, and so it should clear its active find match (and no
980 // longer highlight it with special coloring). 986 // longer highlight it with special coloring).
981 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch) 987 IPC_MESSAGE_ROUTED0(FrameMsg_ClearActiveFindMatch)
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 int /* nfr_request_id */, 1679 int /* nfr_request_id */,
1674 float /* distance */) 1680 float /* distance */)
1675 1681
1676 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) 1682 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1677 #endif 1683 #endif
1678 1684
1679 // Adding a new message? Stick to the sort order above: first platform 1685 // Adding a new message? Stick to the sort order above: first platform
1680 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1686 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1681 // platform independent FrameHostMsg, then ifdefs for platform specific 1687 // platform independent FrameHostMsg, then ifdefs for platform specific
1682 // FrameHostMsg. 1688 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698