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 | |
797 // Send to the RenderFrame to set text tracks state and style settings. | 791 // Send to the RenderFrame to set text tracks state and style settings. |
798 // Sent for top-level frames. | 792 // Sent for top-level frames. |
799 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, | 793 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, |
800 FrameMsg_TextTrackSettings_Params /* params */) | 794 FrameMsg_TextTrackSettings_Params /* params */) |
801 | 795 |
802 // Posts a message from a frame in another process to the current renderer. | 796 // Posts a message from a frame in another process to the current renderer. |
803 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) | 797 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) |
804 | 798 |
805 #if defined(OS_ANDROID) | 799 #if defined(OS_ANDROID) |
806 // Sent when the browser wants the bounding boxes of the current find matches. | 800 // 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... |
1451 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1445 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1452 int /* version */, | 1446 int /* version */, |
1453 std::vector<gfx::RectF> /* rects */, | 1447 std::vector<gfx::RectF> /* rects */, |
1454 gfx::RectF /* active_rect */) | 1448 gfx::RectF /* active_rect */) |
1455 #endif | 1449 #endif |
1456 | 1450 |
1457 // Adding a new message? Stick to the sort order above: first platform | 1451 // Adding a new message? Stick to the sort order above: first platform |
1458 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1452 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1459 // platform independent FrameHostMsg, then ifdefs for platform specific | 1453 // platform independent FrameHostMsg, then ifdefs for platform specific |
1460 // FrameHostMsg. | 1454 // FrameHostMsg. |
OLD | NEW |