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) |
288 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) | 289 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) |
289 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 290 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
290 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 291 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
291 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 292 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
292 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) | 293 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) |
293 IPC_STRUCT_TRAITS_END() | 294 IPC_STRUCT_TRAITS_END() |
294 | 295 |
295 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 296 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
296 IPC_STRUCT_TRAITS_MEMBER(origin) | 297 IPC_STRUCT_TRAITS_MEMBER(origin) |
297 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) | 298 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
962 FrameMsg_PostMessage_Params) | 963 FrameMsg_PostMessage_Params) |
963 | 964 |
964 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 965 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
965 | 966 |
966 // Message to show/hide a popup menu using native controls. | 967 // Message to show/hide a popup menu using native controls. |
967 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 968 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
968 FrameHostMsg_ShowPopup_Params) | 969 FrameHostMsg_ShowPopup_Params) |
969 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 970 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
970 | 971 |
971 #endif | 972 #endif |
OLD | NEW |