| 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 "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "content/common/content_param_traits.h" | 9 #include "content/common/content_param_traits.h" |
| 10 #include "content/common/frame_message_enums.h" | 10 #include "content/common/frame_message_enums.h" |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 278 |
| 279 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) | 279 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
| 280 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) | 280 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) |
| 281 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) | 281 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) |
| 282 IPC_STRUCT_TRAITS_MEMBER(redirects) | 282 IPC_STRUCT_TRAITS_MEMBER(redirects) |
| 283 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) | 283 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) |
| 284 IPC_STRUCT_TRAITS_MEMBER(request_time) | 284 IPC_STRUCT_TRAITS_MEMBER(request_time) |
| 285 IPC_STRUCT_TRAITS_MEMBER(page_state) | 285 IPC_STRUCT_TRAITS_MEMBER(page_state) |
| 286 IPC_STRUCT_TRAITS_MEMBER(page_id) | 286 IPC_STRUCT_TRAITS_MEMBER(page_id) |
| 287 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) | 287 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) |
| 288 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) | |
| 289 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) | 288 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) |
| 290 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 289 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
| 291 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 290 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
| 292 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 291 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
| 293 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) | 292 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) |
| 294 IPC_STRUCT_TRAITS_END() | 293 IPC_STRUCT_TRAITS_END() |
| 295 | 294 |
| 296 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 295 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
| 297 IPC_STRUCT_TRAITS_MEMBER(origin) | 296 IPC_STRUCT_TRAITS_MEMBER(origin) |
| 298 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) | 297 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 FrameMsg_PostMessage_Params) | 962 FrameMsg_PostMessage_Params) |
| 964 | 963 |
| 965 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 964 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 966 | 965 |
| 967 // Message to show/hide a popup menu using native controls. | 966 // Message to show/hide a popup menu using native controls. |
| 968 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 967 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 969 FrameHostMsg_ShowPopup_Params) | 968 FrameHostMsg_ShowPopup_Params) |
| 970 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 969 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 971 | 970 |
| 972 #endif | 971 #endif |
| OLD | NEW |