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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 173 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
174 IPC_STRUCT_TRAITS_END() | 174 IPC_STRUCT_TRAITS_END() |
175 | 175 |
176 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) | 176 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) |
177 IPC_STRUCT_TRAITS_MEMBER(name) | 177 IPC_STRUCT_TRAITS_MEMBER(name) |
178 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) | 178 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) |
179 IPC_STRUCT_TRAITS_MEMBER(margin_width) | 179 IPC_STRUCT_TRAITS_MEMBER(margin_width) |
180 IPC_STRUCT_TRAITS_MEMBER(margin_height) | 180 IPC_STRUCT_TRAITS_MEMBER(margin_height) |
181 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) | 181 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) |
182 IPC_STRUCT_TRAITS_MEMBER(allow_payment_request) | 182 IPC_STRUCT_TRAITS_MEMBER(allow_payment_request) |
| 183 IPC_STRUCT_TRAITS_MEMBER(is_display_none) |
183 IPC_STRUCT_TRAITS_MEMBER(required_csp) | 184 IPC_STRUCT_TRAITS_MEMBER(required_csp) |
184 IPC_STRUCT_TRAITS_MEMBER(allowed_features) | 185 IPC_STRUCT_TRAITS_MEMBER(allowed_features) |
185 IPC_STRUCT_TRAITS_END() | 186 IPC_STRUCT_TRAITS_END() |
186 | 187 |
187 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) | 188 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) |
188 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) | 189 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) |
189 IPC_STRUCT_TRAITS_END() | 190 IPC_STRUCT_TRAITS_END() |
190 | 191 |
191 IPC_STRUCT_BEGIN(FrameHostMsg_DidFailProvisionalLoadWithError_Params) | 192 IPC_STRUCT_BEGIN(FrameHostMsg_DidFailProvisionalLoadWithError_Params) |
192 // Error code as reported in the DidFailProvisionalLoad callback. | 193 // Error code as reported in the DidFailProvisionalLoad callback. |
(...skipping 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1645 int /* nfr_request_id */, | 1646 int /* nfr_request_id */, |
1646 float /* distance */) | 1647 float /* distance */) |
1647 | 1648 |
1648 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1649 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
1649 #endif | 1650 #endif |
1650 | 1651 |
1651 // Adding a new message? Stick to the sort order above: first platform | 1652 // Adding a new message? Stick to the sort order above: first platform |
1652 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1653 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1653 // platform independent FrameHostMsg, then ifdefs for platform specific | 1654 // platform independent FrameHostMsg, then ifdefs for platform specific |
1654 // FrameHostMsg. | 1655 // FrameHostMsg. |
OLD | NEW |