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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
747 // SmartClipDataExtracted IPC. | 747 // SmartClipDataExtracted IPC. |
748 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData, | 748 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData, |
749 uint32_t /* id */, | 749 uint32_t /* id */, |
750 gfx::Rect /* rect */) | 750 gfx::Rect /* rect */) |
751 | 751 |
752 // Requests information about currently focused text input element from the | 752 // Requests information about currently focused text input element from the |
753 // renderer. | 753 // renderer. |
754 IPC_MESSAGE_ROUTED1(FrameMsg_FocusedFormFieldDataRequest, int /* request_id */) | 754 IPC_MESSAGE_ROUTED1(FrameMsg_FocusedFormFieldDataRequest, int /* request_id */) |
755 | 755 |
756 // Change the accessibility mode in the renderer process. | 756 // Change the accessibility mode in the renderer process. |
757 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, | 757 IPC_MESSAGE_ROUTED1(FrameMsg_SetAccessibilityMode, int) |
dcheng
2017/03/03 18:43:20
Would it make sense to just keep this typed as Acc
| |
758 AccessibilityMode) | |
759 | 758 |
760 // Dispatch a load event in the iframe element containing this frame. | 759 // Dispatch a load event in the iframe element containing this frame. |
761 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) | 760 IPC_MESSAGE_ROUTED0(FrameMsg_DispatchLoad) |
762 | 761 |
763 // Notifies the frame that its parent has changed the frame's sandbox flags. | 762 // Notifies the frame that its parent has changed the frame's sandbox flags. |
764 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) | 763 IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags) |
765 | 764 |
766 // Update a proxy's window.name property. Used when the frame's name is | 765 // Update a proxy's window.name property. Used when the frame's name is |
767 // changed in another process. | 766 // changed in another process. |
768 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, | 767 IPC_MESSAGE_ROUTED2(FrameMsg_DidUpdateName, |
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1593 // nearest find result in the sending frame. | 1592 // nearest find result in the sending frame. |
1594 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1593 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1595 int /* nfr_request_id */, | 1594 int /* nfr_request_id */, |
1596 float /* distance */) | 1595 float /* distance */) |
1597 #endif | 1596 #endif |
1598 | 1597 |
1599 // Adding a new message? Stick to the sort order above: first platform | 1598 // Adding a new message? Stick to the sort order above: first platform |
1600 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1599 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1601 // platform independent FrameHostMsg, then ifdefs for platform specific | 1600 // platform independent FrameHostMsg, then ifdefs for platform specific |
1602 // FrameHostMsg. | 1601 // FrameHostMsg. |
OLD | NEW |