| 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 "cc/surfaces/surface_id.h" | 8 #include "cc/surfaces/surface_id.h" |
| 9 #include "cc/surfaces/surface_sequence.h" | 9 #include "cc/surfaces/surface_sequence.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 IPC_STRUCT_TRAITS_MEMBER(method) | 273 IPC_STRUCT_TRAITS_MEMBER(method) |
| 274 IPC_STRUCT_TRAITS_MEMBER(headers) | 274 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 275 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 275 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 276 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 276 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 277 IPC_STRUCT_TRAITS_END() | 277 IPC_STRUCT_TRAITS_END() |
| 278 | 278 |
| 279 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) | 279 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) |
| 280 IPC_STRUCT_TRAITS_MEMBER(is_post) | 280 IPC_STRUCT_TRAITS_MEMBER(is_post) |
| 281 IPC_STRUCT_TRAITS_MEMBER(extra_headers) | 281 IPC_STRUCT_TRAITS_MEMBER(extra_headers) |
| 282 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data) | 282 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data) |
| 283 #if defined(OS_ANDROID) |
| 284 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 285 #endif |
| 283 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 286 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
| 284 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 287 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
| 285 IPC_STRUCT_TRAITS_END() | 288 IPC_STRUCT_TRAITS_END() |
| 286 | 289 |
| 287 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) | 290 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
| 288 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) | 291 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) |
| 289 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) | 292 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) |
| 290 IPC_STRUCT_TRAITS_MEMBER(redirects) | 293 IPC_STRUCT_TRAITS_MEMBER(redirects) |
| 291 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) | 294 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) |
| 292 IPC_STRUCT_TRAITS_MEMBER(request_time) | 295 IPC_STRUCT_TRAITS_MEMBER(request_time) |
| (...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 FrameMsg_PostMessage_Params) | 1021 FrameMsg_PostMessage_Params) |
| 1019 | 1022 |
| 1020 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 1023 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 1021 | 1024 |
| 1022 // Message to show/hide a popup menu using native controls. | 1025 // Message to show/hide a popup menu using native controls. |
| 1023 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1026 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
| 1024 FrameHostMsg_ShowPopup_Params) | 1027 FrameHostMsg_ShowPopup_Params) |
| 1025 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1028 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
| 1026 | 1029 |
| 1027 #endif | 1030 #endif |
| OLD | NEW |