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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
781 // Update a proxy's replicated origin. Used when the frame is navigated to a | 781 // Update a proxy's replicated origin. Used when the frame is navigated to a |
782 // new origin. | 782 // new origin. |
783 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, | 783 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, |
784 url::Origin /* origin */, | 784 url::Origin /* origin */, |
785 bool /* is potentially trustworthy unique origin */) | 785 bool /* is potentially trustworthy unique origin */) |
786 | 786 |
787 // Notifies this frame or proxy that it is now focused. This is used to | 787 // Notifies this frame or proxy that it is now focused. This is used to |
788 // support cross-process focused frame changes. | 788 // support cross-process focused frame changes. |
789 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) | 789 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) |
790 | 790 |
| 791 // Sent to a frame proxy when its real frame is preparing to enter fullscreen |
| 792 // in another process. Actually entering fullscreen will be done separately as |
| 793 // part of ViewMsg_Resize, once the browser process has resized the tab for |
| 794 // fullscreen. |
| 795 IPC_MESSAGE_ROUTED0(FrameMsg_WillEnterFullscreen) |
| 796 |
791 // Send to the RenderFrame to set text tracks state and style settings. | 797 // Send to the RenderFrame to set text tracks state and style settings. |
792 // Sent for top-level frames. | 798 // Sent for top-level frames. |
793 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, | 799 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, |
794 FrameMsg_TextTrackSettings_Params /* params */) | 800 FrameMsg_TextTrackSettings_Params /* params */) |
795 | 801 |
796 // Posts a message from a frame in another process to the current renderer. | 802 // Posts a message from a frame in another process to the current renderer. |
797 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) | 803 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) |
798 | 804 |
799 #if defined(OS_ANDROID) | 805 #if defined(OS_ANDROID) |
800 // Sent when the browser wants the bounding boxes of the current find matches. | 806 // Sent when the browser wants the bounding boxes of the current find matches. |
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1445 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1451 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1446 int /* version */, | 1452 int /* version */, |
1447 std::vector<gfx::RectF> /* rects */, | 1453 std::vector<gfx::RectF> /* rects */, |
1448 gfx::RectF /* active_rect */) | 1454 gfx::RectF /* active_rect */) |
1449 #endif | 1455 #endif |
1450 | 1456 |
1451 // Adding a new message? Stick to the sort order above: first platform | 1457 // Adding a new message? Stick to the sort order above: first platform |
1452 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1458 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1453 // platform independent FrameHostMsg, then ifdefs for platform specific | 1459 // platform independent FrameHostMsg, then ifdefs for platform specific |
1454 // FrameHostMsg. | 1460 // FrameHostMsg. |
OLD | NEW |