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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
769 IPC_MESSAGE_ROUTED1(FrameMsg_TextSurroundingSelectionRequest, | 769 IPC_MESSAGE_ROUTED1(FrameMsg_TextSurroundingSelectionRequest, |
770 uint32_t /* max_length */) | 770 uint32_t /* max_length */) |
771 | 771 |
772 // Extracts the data at the given rect, returning it through the | 772 // Extracts the data at the given rect, returning it through the |
773 // SmartClipDataExtracted IPC. | 773 // SmartClipDataExtracted IPC. |
774 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData, | 774 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData, |
775 uint32_t /* id */, | 775 uint32_t /* id */, |
776 gfx::Rect /* rect */) | 776 gfx::Rect /* rect */) |
777 | 777 |
778 // Change the accessibility mode in the renderer process. | 778 // Change the accessibility mode in the renderer process. |
779 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, | 779 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, content::AccessibilityMode) |
780 AccessibilityMode) | |
781 | 780 |
782 // Dispatch a load event in the iframe element containing this frame. | 781 // Dispatch a load event in the iframe element containing this frame. |
783 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) | 782 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) |
784 | 783 |
785 // Notifies the frame that its parent has changed the frame's sandbox flags. | 784 // Notifies the frame that its parent has changed the frame's sandbox flags. |
786 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) | 785 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) |
787 | 786 |
788 // Update a proxy's window.name property. Used when the frame's name is | 787 // Update a proxy's window.name property. Used when the frame's name is |
789 // changed in another process. | 788 // changed in another process. |
790 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, | 789 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, |
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1612 int /* nfr_request_id */, | 1611 int /* nfr_request_id */, |
1613 float /* distance */) | 1612 float /* distance */) |
1614 | 1613 |
1615 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1614 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
1616 #endif | 1615 #endif |
1617 | 1616 |
1618 // Adding a new message? Stick to the sort order above: first platform | 1617 // Adding a new message? Stick to the sort order above: first platform |
1619 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1618 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1620 // platform independent FrameHostMsg, then ifdefs for platform specific | 1619 // platform independent FrameHostMsg, then ifdefs for platform specific |
1621 // FrameHostMsg. | 1620 // FrameHostMsg. |
OLD | NEW |