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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
356 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) | 356 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) |
357 #if defined(OS_ANDROID) | 357 #if defined(OS_ANDROID) |
358 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) | 358 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) |
359 #endif | 359 #endif |
360 IPC_STRUCT_TRAITS_END() | 360 IPC_STRUCT_TRAITS_END() |
361 | 361 |
362 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 362 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
363 IPC_STRUCT_TRAITS_MEMBER(origin) | 363 IPC_STRUCT_TRAITS_MEMBER(origin) |
364 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) | 364 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
365 IPC_STRUCT_TRAITS_MEMBER(name) | 365 IPC_STRUCT_TRAITS_MEMBER(name) |
366 IPC_STRUCT_TRAITS_MEMBER(scope) | |
estark
2016/01/14 23:05:49
I'm not actually sure if this line is necessary...
alexmos
2016/01/16 00:49:50
Good catch! Yes, all the fields of the struct sho
| |
367 IPC_STRUCT_TRAITS_MEMBER(should_enforce_strict_mixed_content_checking) | |
366 IPC_STRUCT_TRAITS_END() | 368 IPC_STRUCT_TRAITS_END() |
367 | 369 |
368 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) | 370 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) |
369 // Gives the routing ID for the RenderWidget that will be attached to the | 371 // Gives the routing ID for the RenderWidget that will be attached to the |
370 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this | 372 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this |
371 // is MSG_ROUTING_NONE and the other parameters are not read. | 373 // is MSG_ROUTING_NONE and the other parameters are not read. |
372 IPC_STRUCT_MEMBER(int, routing_id) | 374 IPC_STRUCT_MEMBER(int, routing_id) |
373 | 375 |
374 // Tells the new RenderWidget whether it is initially hidden. | 376 // Tells the new RenderWidget whether it is initially hidden. |
375 IPC_STRUCT_MEMBER(bool, hidden) | 377 IPC_STRUCT_MEMBER(bool, hidden) |
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1364 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1366 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
1365 FrameHostMsg_ShowPopup_Params) | 1367 FrameHostMsg_ShowPopup_Params) |
1366 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1368 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
1367 | 1369 |
1368 #endif | 1370 #endif |
1369 | 1371 |
1370 // Adding a new message? Stick to the sort order above: first platform | 1372 // Adding a new message? Stick to the sort order above: first platform |
1371 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1373 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1372 // platform independent FrameHostMsg, then ifdefs for platform specific | 1374 // platform independent FrameHostMsg, then ifdefs for platform specific |
1373 // FrameHostMsg. | 1375 // FrameHostMsg. |
OLD | NEW |