| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 170 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
| 171 IPC_STRUCT_TRAITS_END() | 171 IPC_STRUCT_TRAITS_END() |
| 172 | 172 |
| 173 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) | 173 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) |
| 174 IPC_STRUCT_TRAITS_MEMBER(name) | 174 IPC_STRUCT_TRAITS_MEMBER(name) |
| 175 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) | 175 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) |
| 176 IPC_STRUCT_TRAITS_MEMBER(margin_width) | 176 IPC_STRUCT_TRAITS_MEMBER(margin_width) |
| 177 IPC_STRUCT_TRAITS_MEMBER(margin_height) | 177 IPC_STRUCT_TRAITS_MEMBER(margin_height) |
| 178 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) | 178 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) |
| 179 IPC_STRUCT_TRAITS_MEMBER(allow_payment_request) | 179 IPC_STRUCT_TRAITS_MEMBER(allow_payment_request) |
| 180 IPC_STRUCT_TRAITS_MEMBER(is_display_none) |
| 180 IPC_STRUCT_TRAITS_MEMBER(required_csp) | 181 IPC_STRUCT_TRAITS_MEMBER(required_csp) |
| 181 IPC_STRUCT_TRAITS_MEMBER(allowed_features) | 182 IPC_STRUCT_TRAITS_MEMBER(allowed_features) |
| 182 IPC_STRUCT_TRAITS_END() | 183 IPC_STRUCT_TRAITS_END() |
| 183 | 184 |
| 184 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) | 185 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) |
| 185 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) | 186 IPC_STRUCT_TRAITS_MEMBER(had_form_interaction) |
| 186 IPC_STRUCT_TRAITS_END() | 187 IPC_STRUCT_TRAITS_END() |
| 187 | 188 |
| 188 IPC_STRUCT_BEGIN(FrameHostMsg_DidFailProvisionalLoadWithError_Params) | 189 IPC_STRUCT_BEGIN(FrameHostMsg_DidFailProvisionalLoadWithError_Params) |
| 189 // Error code as reported in the DidFailProvisionalLoad callback. | 190 // Error code as reported in the DidFailProvisionalLoad callback. |
| (...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1618 int /* nfr_request_id */, | 1619 int /* nfr_request_id */, |
| 1619 float /* distance */) | 1620 float /* distance */) |
| 1620 | 1621 |
| 1621 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1622 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1622 #endif | 1623 #endif |
| 1623 | 1624 |
| 1624 // Adding a new message? Stick to the sort order above: first platform | 1625 // Adding a new message? Stick to the sort order above: first platform |
| 1625 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1626 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1626 // platform independent FrameHostMsg, then ifdefs for platform specific | 1627 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1627 // FrameHostMsg. | 1628 // FrameHostMsg. |
| OLD | NEW |