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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 IPC_STRUCT_TRAITS_MEMBER(method) | 343 IPC_STRUCT_TRAITS_MEMBER(method) |
344 IPC_STRUCT_TRAITS_MEMBER(post_data) | 344 IPC_STRUCT_TRAITS_MEMBER(post_data) |
345 IPC_STRUCT_TRAITS_END() | 345 IPC_STRUCT_TRAITS_END() |
346 | 346 |
347 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) | 347 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) |
348 IPC_STRUCT_TRAITS_MEMBER(headers) | 348 IPC_STRUCT_TRAITS_MEMBER(headers) |
349 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 349 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
350 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 350 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
351 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 351 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
352 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 352 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 353 IPC_STRUCT_TRAITS_MEMBER(initiator) |
353 IPC_STRUCT_TRAITS_END() | 354 IPC_STRUCT_TRAITS_END() |
354 | 355 |
355 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) | 356 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) |
356 IPC_STRUCT_TRAITS_MEMBER(extra_headers) | 357 IPC_STRUCT_TRAITS_MEMBER(extra_headers) |
357 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 358 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
358 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 359 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
359 IPC_STRUCT_TRAITS_END() | 360 IPC_STRUCT_TRAITS_END() |
360 | 361 |
361 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) | 362 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) |
362 IPC_STRUCT_TRAITS_MEMBER(redirect_start) | 363 IPC_STRUCT_TRAITS_MEMBER(redirect_start) |
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1513 // nearest find result in the sending frame. | 1514 // nearest find result in the sending frame. |
1514 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1515 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1515 int /* nfr_request_id */, | 1516 int /* nfr_request_id */, |
1516 float /* distance */) | 1517 float /* distance */) |
1517 #endif | 1518 #endif |
1518 | 1519 |
1519 // Adding a new message? Stick to the sort order above: first platform | 1520 // Adding a new message? Stick to the sort order above: first platform |
1520 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1521 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1521 // platform independent FrameHostMsg, then ifdefs for platform specific | 1522 // platform independent FrameHostMsg, then ifdefs for platform specific |
1522 // FrameHostMsg. | 1523 // FrameHostMsg. |
OLD | NEW |