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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 // Update a proxy's replicated origin. Used when the frame is navigated to a | 800 // Update a proxy's replicated origin. Used when the frame is navigated to a |
801 // new origin. | 801 // new origin. |
802 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, | 802 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, |
803 url::Origin /* origin */, | 803 url::Origin /* origin */, |
804 bool /* is potentially trustworthy unique origin */) | 804 bool /* is potentially trustworthy unique origin */) |
805 | 805 |
806 // Notifies this frame or proxy that it is now focused. This is used to | 806 // Notifies this frame or proxy that it is now focused. This is used to |
807 // support cross-process focused frame changes. | 807 // support cross-process focused frame changes. |
808 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) | 808 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) |
809 | 809 |
| 810 // Sent to a frame proxy when its real frame is preparing to enter fullscreen |
| 811 // in another process. Actually entering fullscreen will be done separately as |
| 812 // part of ViewMsg_Resize, once the browser process has resized the tab for |
| 813 // fullscreen. |
| 814 IPC_MESSAGE_ROUTED0(FrameMsg_WillEnterFullscreen) |
| 815 |
810 // Send to the RenderFrame to set text tracks state and style settings. | 816 // Send to the RenderFrame to set text tracks state and style settings. |
811 // Sent for top-level frames. | 817 // Sent for top-level frames. |
812 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, | 818 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, |
813 FrameMsg_TextTrackSettings_Params /* params */) | 819 FrameMsg_TextTrackSettings_Params /* params */) |
814 | 820 |
815 // Posts a message from a frame in another process to the current renderer. | 821 // Posts a message from a frame in another process to the current renderer. |
816 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) | 822 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) |
817 | 823 |
818 #if defined(OS_ANDROID) | 824 #if defined(OS_ANDROID) |
819 // Sent when the browser wants the bounding boxes of the current find matches. | 825 // Sent when the browser wants the bounding boxes of the current find matches. |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1474 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1480 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1475 int /* version */, | 1481 int /* version */, |
1476 std::vector<gfx::RectF> /* rects */, | 1482 std::vector<gfx::RectF> /* rects */, |
1477 gfx::RectF /* active_rect */) | 1483 gfx::RectF /* active_rect */) |
1478 #endif | 1484 #endif |
1479 | 1485 |
1480 // Adding a new message? Stick to the sort order above: first platform | 1486 // Adding a new message? Stick to the sort order above: first platform |
1481 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1487 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1482 // platform independent FrameHostMsg, then ifdefs for platform specific | 1488 // platform independent FrameHostMsg, then ifdefs for platform specific |
1483 // FrameHostMsg. | 1489 // FrameHostMsg. |
OLD | NEW |