| 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 // Update a proxy's replicated origin. Used when the frame is navigated to a | 754 // Update a proxy's replicated origin. Used when the frame is navigated to a |
| 755 // new origin. | 755 // new origin. |
| 756 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, | 756 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateOrigin, |
| 757 url::Origin /* origin */, | 757 url::Origin /* origin */, |
| 758 bool /* is potentially trustworthy unique origin */) | 758 bool /* is potentially trustworthy unique origin */) |
| 759 | 759 |
| 760 // Notifies this frame or proxy that it is now focused. This is used to | 760 // Notifies this frame or proxy that it is now focused. This is used to |
| 761 // support cross-process focused frame changes. | 761 // support cross-process focused frame changes. |
| 762 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) | 762 IPC_MESSAGE_ROUTED0(FrameMsg_SetFocusedFrame) |
| 763 | 763 |
| 764 // Notifies this frame or proxy that it is no longer focused. This is used when | |
| 765 // a frame in the embedder that the guest cannot see (<webview>) gains focus. | |
| 766 IPC_MESSAGE_ROUTED0(FrameMsg_ClearFocusedFrame) | |
| 767 | |
| 768 // Sent to a frame proxy when its real frame is preparing to enter fullscreen | 764 // Sent to a frame proxy when its real frame is preparing to enter fullscreen |
| 769 // in another process. Actually entering fullscreen will be done separately as | 765 // in another process. Actually entering fullscreen will be done separately as |
| 770 // part of ViewMsg_Resize, once the browser process has resized the tab for | 766 // part of ViewMsg_Resize, once the browser process has resized the tab for |
| 771 // fullscreen. | 767 // fullscreen. |
| 772 IPC_MESSAGE_ROUTED0(FrameMsg_WillEnterFullscreen) | 768 IPC_MESSAGE_ROUTED0(FrameMsg_WillEnterFullscreen) |
| 773 | 769 |
| 774 // Send to the RenderFrame to set text tracks state and style settings. | 770 // Send to the RenderFrame to set text tracks state and style settings. |
| 775 // Sent for top-level frames. | 771 // Sent for top-level frames. |
| 776 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, | 772 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, |
| 777 FrameMsg_TextTrackSettings_Params /* params */) | 773 FrameMsg_TextTrackSettings_Params /* params */) |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 // nearest find result in the sending frame. | 1502 // nearest find result in the sending frame. |
| 1507 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1503 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1508 int /* nfr_request_id */, | 1504 int /* nfr_request_id */, |
| 1509 float /* distance */) | 1505 float /* distance */) |
| 1510 #endif | 1506 #endif |
| 1511 | 1507 |
| 1512 // Adding a new message? Stick to the sort order above: first platform | 1508 // Adding a new message? Stick to the sort order above: first platform |
| 1513 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1509 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1514 // platform independent FrameHostMsg, then ifdefs for platform specific | 1510 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1515 // FrameHostMsg. | 1511 // FrameHostMsg. |
| OLD | NEW |