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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) | 263 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) |
264 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 264 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
265 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 265 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
266 IPC_STRUCT_TRAITS_END() | 266 IPC_STRUCT_TRAITS_END() |
267 | 267 |
268 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) | 268 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
269 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) | 269 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) |
270 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) | 270 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) |
271 IPC_STRUCT_TRAITS_MEMBER(redirects) | 271 IPC_STRUCT_TRAITS_MEMBER(redirects) |
272 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) | 272 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) |
273 IPC_STRUCT_TRAITS_MEMBER(frame_to_navigate) | |
274 IPC_STRUCT_TRAITS_MEMBER(request_time) | 273 IPC_STRUCT_TRAITS_MEMBER(request_time) |
275 IPC_STRUCT_TRAITS_MEMBER(page_state) | 274 IPC_STRUCT_TRAITS_MEMBER(page_state) |
276 IPC_STRUCT_TRAITS_MEMBER(page_id) | 275 IPC_STRUCT_TRAITS_MEMBER(page_id) |
277 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 276 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
278 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 277 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
279 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 278 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
280 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) | 279 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) |
281 IPC_STRUCT_TRAITS_END() | 280 IPC_STRUCT_TRAITS_END() |
282 | 281 |
283 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 282 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 FrameMsg_PostMessage_Params) | 902 FrameMsg_PostMessage_Params) |
904 | 903 |
905 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 904 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
906 | 905 |
907 // Message to show/hide a popup menu using native controls. | 906 // Message to show/hide a popup menu using native controls. |
908 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 907 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
909 FrameHostMsg_ShowPopup_Params) | 908 FrameHostMsg_ShowPopup_Params) |
910 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 909 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
911 | 910 |
912 #endif | 911 #endif |
OLD | NEW |