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