| 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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 // renderer. | 743 // renderer. |
| 744 IPC_MESSAGE_ROUTED1(FrameMsg_FocusedFormFieldDataRequest, int /* request_id */) | 744 IPC_MESSAGE_ROUTED1(FrameMsg_FocusedFormFieldDataRequest, int /* request_id */) |
| 745 | 745 |
| 746 // Change the accessibility mode in the renderer process. | 746 // Change the accessibility mode in the renderer process. |
| 747 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, | 747 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, |
| 748 AccessibilityMode) | 748 AccessibilityMode) |
| 749 | 749 |
| 750 // Dispatch a load event in the iframe element containing this frame. | 750 // Dispatch a load event in the iframe element containing this frame. |
| 751 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) | 751 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) |
| 752 | 752 |
| 753 // Sent to a child frame to control whether its frame owner element in the |
| 754 // parent frame should be collapsed, i.e. removed from the layout. |
| 755 IPC_MESSAGE_ROUTED1(FrameMsg_CollapseFrameOwner, bool /* collapsed */) |
| 756 |
| 753 // Notifies the frame that its parent has changed the frame's sandbox flags. | 757 // Notifies the frame that its parent has changed the frame's sandbox flags. |
| 754 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) | 758 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) |
| 755 | 759 |
| 756 // Update a proxy's window.name property. Used when the frame's name is | 760 // Update a proxy's window.name property. Used when the frame's name is |
| 757 // changed in another process. | 761 // changed in another process. |
| 758 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, | 762 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, |
| 759 std::string /* name */, | 763 std::string /* name */, |
| 760 std::string /* unique_name */) | 764 std::string /* unique_name */) |
| 761 | 765 |
| 762 // Updates replicated ContentSecurityPolicy in a frame proxy. | 766 // Updates replicated ContentSecurityPolicy in a frame proxy. |
| (...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 // nearest find result in the sending frame. | 1558 // nearest find result in the sending frame. |
| 1555 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1559 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1556 int /* nfr_request_id */, | 1560 int /* nfr_request_id */, |
| 1557 float /* distance */) | 1561 float /* distance */) |
| 1558 #endif | 1562 #endif |
| 1559 | 1563 |
| 1560 // Adding a new message? Stick to the sort order above: first platform | 1564 // Adding a new message? Stick to the sort order above: first platform |
| 1561 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1565 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1562 // platform independent FrameHostMsg, then ifdefs for platform specific | 1566 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1563 // FrameHostMsg. | 1567 // FrameHostMsg. |
| OLD | NEW |