| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 IPC_STRUCT_TRAITS_MEMBER(request_id) | 164 IPC_STRUCT_TRAITS_MEMBER(request_id) |
| 165 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 165 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
| 166 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 166 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
| 167 IPC_STRUCT_TRAITS_END() | 167 IPC_STRUCT_TRAITS_END() |
| 168 | 168 |
| 169 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) | 169 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) |
| 170 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) | 170 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) |
| 171 IPC_STRUCT_TRAITS_MEMBER(margin_width) | 171 IPC_STRUCT_TRAITS_MEMBER(margin_width) |
| 172 IPC_STRUCT_TRAITS_MEMBER(margin_height) | 172 IPC_STRUCT_TRAITS_MEMBER(margin_height) |
| 173 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) | 173 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) |
| 174 IPC_STRUCT_TRAITS_MEMBER(required_csp) |
| 174 IPC_STRUCT_TRAITS_MEMBER(delegated_permissions) | 175 IPC_STRUCT_TRAITS_MEMBER(delegated_permissions) |
| 175 IPC_STRUCT_TRAITS_END() | 176 IPC_STRUCT_TRAITS_END() |
| 176 | 177 |
| 177 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) | 178 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) |
| 178 IPC_STRUCT_TRAITS_MEMBER(id) | 179 IPC_STRUCT_TRAITS_MEMBER(id) |
| 179 IPC_STRUCT_TRAITS_MEMBER(rect) | 180 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 180 IPC_STRUCT_TRAITS_END() | 181 IPC_STRUCT_TRAITS_END() |
| 181 | 182 |
| 182 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) | 183 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) |
| 183 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) | 184 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) |
| (...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 // nearest find result in the sending frame. | 1501 // nearest find result in the sending frame. |
| 1501 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1502 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1502 int /* nfr_request_id */, | 1503 int /* nfr_request_id */, |
| 1503 float /* distance */) | 1504 float /* distance */) |
| 1504 #endif | 1505 #endif |
| 1505 | 1506 |
| 1506 // Adding a new message? Stick to the sort order above: first platform | 1507 // Adding a new message? Stick to the sort order above: first platform |
| 1507 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1508 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1508 // platform independent FrameHostMsg, then ifdefs for platform specific | 1509 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1509 // FrameHostMsg. | 1510 // FrameHostMsg. |
| OLD | NEW |