| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 IPC_STRUCT_TRAITS_MEMBER(headers) | 364 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 365 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 365 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 366 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 366 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 367 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 367 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
| 368 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 368 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 369 IPC_STRUCT_TRAITS_MEMBER(mixed_content_context_type) | 369 IPC_STRUCT_TRAITS_MEMBER(mixed_content_context_type) |
| 370 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 370 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
| 371 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 371 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
| 372 IPC_STRUCT_TRAITS_MEMBER(initiator_origin) | 372 IPC_STRUCT_TRAITS_MEMBER(initiator_origin) |
| 373 IPC_STRUCT_TRAITS_MEMBER(client_side_redirect_url) | 373 IPC_STRUCT_TRAITS_MEMBER(client_side_redirect_url) |
| 374 IPC_STRUCT_TRAITS_MEMBER(is_form_submission) |
| 374 IPC_STRUCT_TRAITS_END() | 375 IPC_STRUCT_TRAITS_END() |
| 375 | 376 |
| 376 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) | 377 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) |
| 377 IPC_STRUCT_TRAITS_MEMBER(extra_headers) | 378 IPC_STRUCT_TRAITS_MEMBER(extra_headers) |
| 378 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 379 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
| 379 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 380 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
| 380 IPC_STRUCT_TRAITS_END() | 381 IPC_STRUCT_TRAITS_END() |
| 381 | 382 |
| 382 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) | 383 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) |
| 383 IPC_STRUCT_TRAITS_MEMBER(redirect_start) | 384 IPC_STRUCT_TRAITS_MEMBER(redirect_start) |
| (...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 int /* nfr_request_id */, | 1640 int /* nfr_request_id */, |
| 1640 float /* distance */) | 1641 float /* distance */) |
| 1641 | 1642 |
| 1642 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1643 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1643 #endif | 1644 #endif |
| 1644 | 1645 |
| 1645 // Adding a new message? Stick to the sort order above: first platform | 1646 // Adding a new message? Stick to the sort order above: first platform |
| 1646 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1647 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1647 // platform independent FrameHostMsg, then ifdefs for platform specific | 1648 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1648 // FrameHostMsg. | 1649 // FrameHostMsg. |
| OLD | NEW |