| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) | 374 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) |
| 375 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) | 375 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) |
| 376 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) | 376 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) |
| 377 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) | 377 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) |
| 378 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) | 378 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) |
| 379 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) | 379 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) |
| 380 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) | 380 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) |
| 381 IPC_STRUCT_TRAITS_MEMBER(is_view_source) | 381 IPC_STRUCT_TRAITS_MEMBER(is_view_source) |
| 382 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) | 382 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) |
| 383 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) | 383 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) |
| 384 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) | |
| 385 #if defined(OS_ANDROID) | 384 #if defined(OS_ANDROID) |
| 386 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) | 385 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) |
| 387 #endif | 386 #endif |
| 388 IPC_STRUCT_TRAITS_END() | 387 IPC_STRUCT_TRAITS_END() |
| 389 | 388 |
| 390 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) | 389 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) |
| 391 IPC_STRUCT_TRAITS_MEMBER(origin) | 390 IPC_STRUCT_TRAITS_MEMBER(origin) |
| 392 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) | 391 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) |
| 393 IPC_STRUCT_TRAITS_MEMBER(name) | 392 IPC_STRUCT_TRAITS_MEMBER(name) |
| 394 IPC_STRUCT_TRAITS_MEMBER(unique_name) | 393 IPC_STRUCT_TRAITS_MEMBER(unique_name) |
| (...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1561 // nearest find result in the sending frame. | 1560 // nearest find result in the sending frame. |
| 1562 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1561 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1563 int /* nfr_request_id */, | 1562 int /* nfr_request_id */, |
| 1564 float /* distance */) | 1563 float /* distance */) |
| 1565 #endif | 1564 #endif |
| 1566 | 1565 |
| 1567 // Adding a new message? Stick to the sort order above: first platform | 1566 // Adding a new message? Stick to the sort order above: first platform |
| 1568 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1567 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1569 // platform independent FrameHostMsg, then ifdefs for platform specific | 1568 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1570 // FrameHostMsg. | 1569 // FrameHostMsg. |
| OLD | NEW |