Chromium Code Reviews| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 167 IPC_STRUCT_TRAITS_MEMBER(request_id) | 167 IPC_STRUCT_TRAITS_MEMBER(request_id) |
| 168 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 168 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
| 169 IPC_STRUCT_TRAITS_MEMBER(link_followed) | 169 IPC_STRUCT_TRAITS_MEMBER(link_followed) |
| 170 IPC_STRUCT_TRAITS_END() | 170 IPC_STRUCT_TRAITS_END() |
| 171 | 171 |
| 172 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) | 172 IPC_STRUCT_TRAITS_BEGIN(content::FrameOwnerProperties) |
| 173 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) | 173 IPC_STRUCT_TRAITS_MEMBER(scrolling_mode) |
| 174 IPC_STRUCT_TRAITS_MEMBER(margin_width) | 174 IPC_STRUCT_TRAITS_MEMBER(margin_width) |
| 175 IPC_STRUCT_TRAITS_MEMBER(margin_height) | 175 IPC_STRUCT_TRAITS_MEMBER(margin_height) |
| 176 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) | 176 IPC_STRUCT_TRAITS_MEMBER(allow_fullscreen) |
| 177 IPC_STRUCT_TRAITS_MEMBER(allow_payment_request) | |
|
pals
2016/12/02 12:29:48
Missed out this change in the previous patch. Now,
| |
| 177 IPC_STRUCT_TRAITS_MEMBER(required_csp) | 178 IPC_STRUCT_TRAITS_MEMBER(required_csp) |
| 178 IPC_STRUCT_TRAITS_MEMBER(delegated_permissions) | 179 IPC_STRUCT_TRAITS_MEMBER(delegated_permissions) |
| 179 IPC_STRUCT_TRAITS_END() | 180 IPC_STRUCT_TRAITS_END() |
| 180 | 181 |
| 181 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) | 182 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) |
| 182 IPC_STRUCT_TRAITS_MEMBER(id) | 183 IPC_STRUCT_TRAITS_MEMBER(id) |
| 183 IPC_STRUCT_TRAITS_MEMBER(rect) | 184 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 184 IPC_STRUCT_TRAITS_END() | 185 IPC_STRUCT_TRAITS_END() |
| 185 | 186 |
| 186 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) | 187 IPC_STRUCT_TRAITS_BEGIN(content::PageImportanceSignals) |
| (...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1538 // nearest find result in the sending frame. | 1539 // nearest find result in the sending frame. |
| 1539 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1540 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1540 int /* nfr_request_id */, | 1541 int /* nfr_request_id */, |
| 1541 float /* distance */) | 1542 float /* distance */) |
| 1542 #endif | 1543 #endif |
| 1543 | 1544 |
| 1544 // Adding a new message? Stick to the sort order above: first platform | 1545 // Adding a new message? Stick to the sort order above: first platform |
| 1545 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1546 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1546 // platform independent FrameHostMsg, then ifdefs for platform specific | 1547 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1547 // FrameHostMsg. | 1548 // FrameHostMsg. |
| OLD | NEW |