| 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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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. |
| OLD | NEW |