| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 // After this, it is no longer safe to show a pending navigation's URL without | 1060 // After this, it is no longer safe to show a pending navigation's URL without |
| 1061 // making a URL spoof possible. | 1061 // making a URL spoof possible. |
| 1062 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidAccessInitialDocument) | 1062 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidAccessInitialDocument) |
| 1063 | 1063 |
| 1064 // Sent when the RenderFrame or RenderFrameProxy either updates its opener to | 1064 // Sent when the RenderFrame or RenderFrameProxy either updates its opener to |
| 1065 // another frame identified by |opener_routing_id|, or, if |opener_routing_id| | 1065 // another frame identified by |opener_routing_id|, or, if |opener_routing_id| |
| 1066 // is MSG_ROUTING_NONE, the frame disowns its opener for the lifetime of the | 1066 // is MSG_ROUTING_NONE, the frame disowns its opener for the lifetime of the |
| 1067 // window. | 1067 // window. |
| 1068 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeOpener, int /* opener_routing_id */) | 1068 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeOpener, int /* opener_routing_id */) |
| 1069 | 1069 |
| 1070 // Notifies the browser that a page id was assigned. | |
| 1071 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidAssignPageId, int32_t /* page_id */) | |
| 1072 | |
| 1073 // Notifies the browser that sandbox flags have changed for a subframe of this | 1070 // Notifies the browser that sandbox flags have changed for a subframe of this |
| 1074 // frame. | 1071 // frame. |
| 1075 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeSandboxFlags, | 1072 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeSandboxFlags, |
| 1076 int32_t /* subframe_routing_id */, | 1073 int32_t /* subframe_routing_id */, |
| 1077 blink::WebSandboxFlags /* updated_flags */) | 1074 blink::WebSandboxFlags /* updated_flags */) |
| 1078 | 1075 |
| 1079 // Notifies the browser that frame owner properties have changed for a subframe | 1076 // Notifies the browser that frame owner properties have changed for a subframe |
| 1080 // of this frame. | 1077 // of this frame. |
| 1081 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeFrameOwnerProperties, | 1078 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeFrameOwnerProperties, |
| 1082 int32_t /* subframe_routing_id */, | 1079 int32_t /* subframe_routing_id */, |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1502 // nearest find result in the sending frame. | 1499 // nearest find result in the sending frame. |
| 1503 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1500 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1504 int /* nfr_request_id */, | 1501 int /* nfr_request_id */, |
| 1505 float /* distance */) | 1502 float /* distance */) |
| 1506 #endif | 1503 #endif |
| 1507 | 1504 |
| 1508 // Adding a new message? Stick to the sort order above: first platform | 1505 // Adding a new message? Stick to the sort order above: first platform |
| 1509 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1506 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1510 // platform independent FrameHostMsg, then ifdefs for platform specific | 1507 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1511 // FrameHostMsg. | 1508 // FrameHostMsg. |
| OLD | NEW |