| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 IPC_STRUCT_TRAITS_MEMBER(headers) | 354 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 355 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 355 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 356 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 356 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 357 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 357 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
| 358 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 358 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 359 IPC_STRUCT_TRAITS_MEMBER(mixed_content_context_type) | 359 IPC_STRUCT_TRAITS_MEMBER(mixed_content_context_type) |
| 360 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 360 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
| 361 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 361 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
| 362 IPC_STRUCT_TRAITS_MEMBER(initiator_origin) | 362 IPC_STRUCT_TRAITS_MEMBER(initiator_origin) |
| 363 IPC_STRUCT_TRAITS_MEMBER(client_side_redirect_url) | 363 IPC_STRUCT_TRAITS_MEMBER(client_side_redirect_url) |
| 364 IPC_STRUCT_TRAITS_MEMBER(is_form_submission) |
| 364 IPC_STRUCT_TRAITS_END() | 365 IPC_STRUCT_TRAITS_END() |
| 365 | 366 |
| 366 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) | 367 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) |
| 367 IPC_STRUCT_TRAITS_MEMBER(extra_headers) | 368 IPC_STRUCT_TRAITS_MEMBER(extra_headers) |
| 368 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 369 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
| 369 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 370 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
| 370 IPC_STRUCT_TRAITS_END() | 371 IPC_STRUCT_TRAITS_END() |
| 371 | 372 |
| 372 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) | 373 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) |
| 373 IPC_STRUCT_TRAITS_MEMBER(redirect_start) | 374 IPC_STRUCT_TRAITS_MEMBER(redirect_start) |
| (...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 int /* nfr_request_id */, | 1630 int /* nfr_request_id */, |
| 1630 float /* distance */) | 1631 float /* distance */) |
| 1631 | 1632 |
| 1632 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1633 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1633 #endif | 1634 #endif |
| 1634 | 1635 |
| 1635 // Adding a new message? Stick to the sort order above: first platform | 1636 // Adding a new message? Stick to the sort order above: first platform |
| 1636 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1637 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1637 // platform independent FrameHostMsg, then ifdefs for platform specific | 1638 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1638 // FrameHostMsg. | 1639 // FrameHostMsg. |
| OLD | NEW |