| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) | 366 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) |
| 367 IPC_STRUCT_TRAITS_MEMBER(redirect_start) | 367 IPC_STRUCT_TRAITS_MEMBER(redirect_start) |
| 368 IPC_STRUCT_TRAITS_MEMBER(redirect_end) | 368 IPC_STRUCT_TRAITS_MEMBER(redirect_end) |
| 369 IPC_STRUCT_TRAITS_MEMBER(fetch_start) | 369 IPC_STRUCT_TRAITS_MEMBER(fetch_start) |
| 370 IPC_STRUCT_TRAITS_END() | 370 IPC_STRUCT_TRAITS_END() |
| 371 | 371 |
| 372 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) | 372 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
| 373 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) | 373 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) |
| 374 IPC_STRUCT_TRAITS_MEMBER(redirects) | 374 IPC_STRUCT_TRAITS_MEMBER(redirects) |
| 375 IPC_STRUCT_TRAITS_MEMBER(redirect_response) | 375 IPC_STRUCT_TRAITS_MEMBER(redirect_response) |
| 376 IPC_STRUCT_TRAITS_MEMBER(redirect_infos) |
| 377 IPC_STRUCT_TRAITS_MEMBER(original_url) |
| 378 IPC_STRUCT_TRAITS_MEMBER(original_method) |
| 376 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) | 379 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) |
| 377 IPC_STRUCT_TRAITS_MEMBER(page_state) | 380 IPC_STRUCT_TRAITS_MEMBER(page_state) |
| 378 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) | 381 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) |
| 379 IPC_STRUCT_TRAITS_MEMBER(is_history_navigation_in_new_child) | 382 IPC_STRUCT_TRAITS_MEMBER(is_history_navigation_in_new_child) |
| 380 IPC_STRUCT_TRAITS_MEMBER(subframe_unique_names) | 383 IPC_STRUCT_TRAITS_MEMBER(subframe_unique_names) |
| 381 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) | 384 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) |
| 382 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) | 385 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) |
| 383 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 386 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
| 384 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 387 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
| 385 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 388 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
| (...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 // nearest find result in the sending frame. | 1579 // nearest find result in the sending frame. |
| 1577 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1580 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1578 int /* nfr_request_id */, | 1581 int /* nfr_request_id */, |
| 1579 float /* distance */) | 1582 float /* distance */) |
| 1580 #endif | 1583 #endif |
| 1581 | 1584 |
| 1582 // Adding a new message? Stick to the sort order above: first platform | 1585 // Adding a new message? Stick to the sort order above: first platform |
| 1583 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1586 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1584 // platform independent FrameHostMsg, then ifdefs for platform specific | 1587 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1585 // FrameHostMsg. | 1588 // FrameHostMsg. |
| OLD | NEW |