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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) | 334 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) |
335 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) | 335 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) |
336 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) | 336 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) |
337 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 337 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
338 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 338 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
339 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 339 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
340 IPC_STRUCT_TRAITS_MEMBER(is_view_source) | 340 IPC_STRUCT_TRAITS_MEMBER(is_view_source) |
341 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) | 341 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) |
342 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) | 342 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) |
343 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) | 343 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) |
| 344 #if defined(OS_ANDROID) |
| 345 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) |
| 346 #endif |
344 IPC_STRUCT_TRAITS_END() | 347 IPC_STRUCT_TRAITS_END() |
345 | 348 |
346 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 349 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
347 IPC_STRUCT_TRAITS_MEMBER(origin) | 350 IPC_STRUCT_TRAITS_MEMBER(origin) |
348 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) | 351 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
349 IPC_STRUCT_TRAITS_MEMBER(name) | 352 IPC_STRUCT_TRAITS_MEMBER(name) |
350 IPC_STRUCT_TRAITS_END() | 353 IPC_STRUCT_TRAITS_END() |
351 | 354 |
352 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) | 355 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) |
353 // Gives the routing ID for the RenderWidget that will be attached to the | 356 // Gives the routing ID for the RenderWidget that will be attached to the |
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1319 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1322 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
1320 FrameHostMsg_ShowPopup_Params) | 1323 FrameHostMsg_ShowPopup_Params) |
1321 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1324 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
1322 | 1325 |
1323 #endif | 1326 #endif |
1324 | 1327 |
1325 // Adding a new message? Stick to the sort order above: first platform | 1328 // Adding a new message? Stick to the sort order above: first platform |
1326 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1329 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1327 // platform independent FrameHostMsg, then ifdefs for platform specific | 1330 // platform independent FrameHostMsg, then ifdefs for platform specific |
1328 // FrameHostMsg. | 1331 // FrameHostMsg. |
OLD | NEW |