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

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

Issue 1934703002: Fix keyboard focus for OOPIF-<webview>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nasko@ comments. Created 4 years, 4 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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 // Update a proxy's replicated origin. Used when the frame is navigated to a 819 // Update a proxy's replicated origin. Used when the frame is navigated to a
820 // new origin. 820 // new origin.
821 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, 821 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin,
822 url::Origin /* origin */, 822 url::Origin /* origin */,
823 bool /* is potentially trustworthy unique origin */) 823 bool /* is potentially trustworthy unique origin */)
824 824
825 // Notifies this frame or proxy that it is now focused. This is used to 825 // Notifies this frame or proxy that it is now focused. This is used to
826 // support cross-process focused frame changes. 826 // support cross-process focused frame changes.
827 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) 827 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame)
828 828
829 // Notifies this frame or proxy that it is no longer focused. This is used when
830 // a frame in the embedder that the guest cannot see (<webview>) gains focus.
831 IPC_MESSAGE_ROUTED0(FrameMsg_ClearFocusedFrame)
832
829 // Sent to a frame proxy when its real frame is preparing to enter fullscreen 833 // Sent to a frame proxy when its real frame is preparing to enter fullscreen
830 // in another process. Actually entering fullscreen will be done separately as 834 // in another process. Actually entering fullscreen will be done separately as
831 // part of ViewMsg_Resize, once the browser process has resized the tab for 835 // part of ViewMsg_Resize, once the browser process has resized the tab for
832 // fullscreen. 836 // fullscreen.
833 IPC_MESSAGE_ROUTED0(FrameMsg_WillEnterFullscreen) 837 IPC_MESSAGE_ROUTED0(FrameMsg_WillEnterFullscreen)
834 838
835 // Send to the RenderFrame to set text tracks state and style settings. 839 // Send to the RenderFrame to set text tracks state and style settings.
836 // Sent for top-level frames. 840 // Sent for top-level frames.
837 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, 841 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings,
838 FrameMsg_TextTrackSettings_Params /* params */) 842 FrameMsg_TextTrackSettings_Params /* params */)
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
1576 // nearest find result in the sending frame. 1580 // nearest find result in the sending frame.
1577 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1581 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1578 int /* nfr_request_id */, 1582 int /* nfr_request_id */,
1579 float /* distance */) 1583 float /* distance */)
1580 #endif 1584 #endif
1581 1585
1582 // Adding a new message? Stick to the sort order above: first platform 1586 // Adding a new message? Stick to the sort order above: first platform
1583 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1587 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1584 // platform independent FrameHostMsg, then ifdefs for platform specific 1588 // platform independent FrameHostMsg, then ifdefs for platform specific
1585 // FrameHostMsg. 1589 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_view_child_frame.cc ('k') | content/public/test/browser_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698