| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) | 368 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) |
| 369 #if defined(OS_ANDROID) | 369 #if defined(OS_ANDROID) |
| 370 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) | 370 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) |
| 371 #endif | 371 #endif |
| 372 IPC_STRUCT_TRAITS_END() | 372 IPC_STRUCT_TRAITS_END() |
| 373 | 373 |
| 374 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 374 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
| 375 IPC_STRUCT_TRAITS_MEMBER(origin) | 375 IPC_STRUCT_TRAITS_MEMBER(origin) |
| 376 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) | 376 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
| 377 IPC_STRUCT_TRAITS_MEMBER(name) | 377 IPC_STRUCT_TRAITS_MEMBER(name) |
| 378 IPC_STRUCT_TRAITS_MEMBER(scope) |
| 379 IPC_STRUCT_TRAITS_MEMBER(should_enforce_strict_mixed_content_checking) |
| 378 IPC_STRUCT_TRAITS_END() | 380 IPC_STRUCT_TRAITS_END() |
| 379 | 381 |
| 380 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) | 382 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) |
| 381 // Gives the routing ID for the RenderWidget that will be attached to the | 383 // Gives the routing ID for the RenderWidget that will be attached to the |
| 382 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this | 384 // new RenderFrame. If the RenderFrame does not need a RenderWidget, this |
| 383 // is MSG_ROUTING_NONE and the other parameters are not read. | 385 // is MSG_ROUTING_NONE and the other parameters are not read. |
| 384 IPC_STRUCT_MEMBER(int, routing_id) | 386 IPC_STRUCT_MEMBER(int, routing_id) |
| 385 | 387 |
| 386 // Tells the new RenderWidget whether it is initially hidden. | 388 // Tells the new RenderWidget whether it is initially hidden. |
| 387 IPC_STRUCT_MEMBER(bool, hidden) | 389 IPC_STRUCT_MEMBER(bool, hidden) |
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1436 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1438 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1437 int /* version */, | 1439 int /* version */, |
| 1438 std::vector<gfx::RectF> /* rects */, | 1440 std::vector<gfx::RectF> /* rects */, |
| 1439 gfx::RectF /* active_rect */) | 1441 gfx::RectF /* active_rect */) |
| 1440 #endif | 1442 #endif |
| 1441 | 1443 |
| 1442 // Adding a new message? Stick to the sort order above: first platform | 1444 // Adding a new message? Stick to the sort order above: first platform |
| 1443 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1445 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1444 // platform independent FrameHostMsg, then ifdefs for platform specific | 1446 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1445 // FrameHostMsg. | 1447 // FrameHostMsg. |
| OLD | NEW |