| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) | 376 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
| 377 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) | 377 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) |
| 378 IPC_STRUCT_TRAITS_MEMBER(redirects) | 378 IPC_STRUCT_TRAITS_MEMBER(redirects) |
| 379 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) | 379 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) |
| 380 IPC_STRUCT_TRAITS_MEMBER(request_time) | 380 IPC_STRUCT_TRAITS_MEMBER(request_time) |
| 381 IPC_STRUCT_TRAITS_MEMBER(page_state) | 381 IPC_STRUCT_TRAITS_MEMBER(page_state) |
| 382 IPC_STRUCT_TRAITS_MEMBER(page_id) | 382 IPC_STRUCT_TRAITS_MEMBER(page_id) |
| 383 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) | 383 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) |
| 384 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) | 384 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) |
| 385 IPC_STRUCT_TRAITS_MEMBER(is_history_navigation_in_new_child) | 385 IPC_STRUCT_TRAITS_MEMBER(is_history_navigation_in_new_child) |
| 386 IPC_STRUCT_TRAITS_MEMBER(has_subtree_history_items) |
| 386 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) | 387 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) |
| 387 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) | 388 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) |
| 388 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 389 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
| 389 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 390 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
| 390 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 391 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
| 391 IPC_STRUCT_TRAITS_MEMBER(is_view_source) | 392 IPC_STRUCT_TRAITS_MEMBER(is_view_source) |
| 392 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) | 393 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) |
| 393 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) | 394 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) |
| 394 IPC_STRUCT_TRAITS_MEMBER(navigation_timing) | 395 IPC_STRUCT_TRAITS_MEMBER(navigation_timing) |
| 395 #if defined(OS_ANDROID) | 396 #if defined(OS_ANDROID) |
| (...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 // nearest find result in the sending frame. | 1571 // nearest find result in the sending frame. |
| 1571 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1572 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1572 int /* nfr_request_id */, | 1573 int /* nfr_request_id */, |
| 1573 float /* distance */) | 1574 float /* distance */) |
| 1574 #endif | 1575 #endif |
| 1575 | 1576 |
| 1576 // Adding a new message? Stick to the sort order above: first platform | 1577 // Adding a new message? Stick to the sort order above: first platform |
| 1577 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1578 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1578 // platform independent FrameHostMsg, then ifdefs for platform specific | 1579 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1579 // FrameHostMsg. | 1580 // FrameHostMsg. |
| OLD | NEW |