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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 IPC_STRUCT_TRAITS_MEMBER(url) | 279 IPC_STRUCT_TRAITS_MEMBER(url) |
280 IPC_STRUCT_TRAITS_MEMBER(referrer) | 280 IPC_STRUCT_TRAITS_MEMBER(referrer) |
281 IPC_STRUCT_TRAITS_MEMBER(transition) | 281 IPC_STRUCT_TRAITS_MEMBER(transition) |
282 IPC_STRUCT_TRAITS_MEMBER(navigation_type) | 282 IPC_STRUCT_TRAITS_MEMBER(navigation_type) |
283 IPC_STRUCT_TRAITS_MEMBER(allow_download) | 283 IPC_STRUCT_TRAITS_MEMBER(allow_download) |
284 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) | 284 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) |
285 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) | 285 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) |
286 IPC_STRUCT_TRAITS_MEMBER(report_type) | 286 IPC_STRUCT_TRAITS_MEMBER(report_type) |
287 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) | 287 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) |
288 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) | 288 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) |
| 289 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) |
289 IPC_STRUCT_TRAITS_MEMBER(lofi_state) | 290 IPC_STRUCT_TRAITS_MEMBER(lofi_state) |
290 IPC_STRUCT_TRAITS_MEMBER(navigation_start) | 291 IPC_STRUCT_TRAITS_MEMBER(navigation_start) |
291 IPC_STRUCT_TRAITS_END() | 292 IPC_STRUCT_TRAITS_END() |
292 | 293 |
293 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) | 294 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) |
294 IPC_STRUCT_TRAITS_MEMBER(method) | 295 IPC_STRUCT_TRAITS_MEMBER(method) |
295 IPC_STRUCT_TRAITS_MEMBER(headers) | 296 IPC_STRUCT_TRAITS_MEMBER(headers) |
296 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 297 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
297 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 298 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
298 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 299 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
(...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1263 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
1263 FrameHostMsg_ShowPopup_Params) | 1264 FrameHostMsg_ShowPopup_Params) |
1264 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1265 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
1265 | 1266 |
1266 #endif | 1267 #endif |
1267 | 1268 |
1268 // Adding a new message? Stick to the sort order above: first platform | 1269 // Adding a new message? Stick to the sort order above: first platform |
1269 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1270 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1270 // platform independent FrameHostMsg, then ifdefs for platform specific | 1271 // platform independent FrameHostMsg, then ifdefs for platform specific |
1271 // FrameHostMsg. | 1272 // FrameHostMsg. |
OLD | NEW |