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