| 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 "cc/surfaces/surface_id.h" | 8 #include "cc/surfaces/surface_id.h" |
| 9 #include "cc/surfaces/surface_sequence.h" | 9 #include "cc/surfaces/surface_sequence.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) | 625 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) |
| 626 | 626 |
| 627 // Update a proxy's window.name property. Used when the frame's name is | 627 // Update a proxy's window.name property. Used when the frame's name is |
| 628 // changed in another process. | 628 // changed in another process. |
| 629 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */) | 629 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */) |
| 630 | 630 |
| 631 // Update a proxy's replicated origin. Used when the frame is navigated to a | 631 // Update a proxy's replicated origin. Used when the frame is navigated to a |
| 632 // new origin. | 632 // new origin. |
| 633 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateOrigin, url::Origin /* origin */) | 633 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateOrigin, url::Origin /* origin */) |
| 634 | 634 |
| 635 // Notifies this frame that it lost focus to a frame in another process. | 635 // Notifies this frame that it lost focus to the specified frame in another |
| 636 IPC_MESSAGE_ROUTED0(FrameMsg_ClearFocus) | 636 // process. |
| 637 IPC_MESSAGE_ROUTED1(FrameMsg_ClearFocus, int /* focused_frame_routing_id */); |
| 637 | 638 |
| 638 // Send to the RenderFrame to set text tracks state and style settings. | 639 // Send to the RenderFrame to set text tracks state and style settings. |
| 639 // Sent for top-level frames. | 640 // Sent for top-level frames. |
| 640 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, | 641 IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, |
| 641 FrameMsg_TextTrackSettings_Params /* params */) | 642 FrameMsg_TextTrackSettings_Params /* params */) |
| 642 | 643 |
| 643 // Posts a message from a frame in another process to the current renderer. | 644 // Posts a message from a frame in another process to the current renderer. |
| 644 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) | 645 IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) |
| 645 | 646 |
| 646 #if defined(OS_ANDROID) | 647 #if defined(OS_ANDROID) |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1201 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 1201 FrameHostMsg_ShowPopup_Params) | 1202 FrameHostMsg_ShowPopup_Params) |
| 1202 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1203 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 1203 | 1204 |
| 1204 #endif | 1205 #endif |
| 1205 | 1206 |
| 1206 // Adding a new message? Stick to the sort order above: first platform | 1207 // Adding a new message? Stick to the sort order above: first platform |
| 1207 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1208 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1208 // platform independent FrameHostMsg, then ifdefs for platform specific | 1209 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1209 // FrameHostMsg. | 1210 // FrameHostMsg. |
| OLD | NEW |