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 1172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1567 // nearest find result in the sending frame. | 1566 // nearest find result in the sending frame. |
1568 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1567 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1569 int /* nfr_request_id */, | 1568 int /* nfr_request_id */, |
1570 float /* distance */) | 1569 float /* distance */) |
1571 #endif | 1570 #endif |
1572 | 1571 |
1573 // Adding a new message? Stick to the sort order above: first platform | 1572 // Adding a new message? Stick to the sort order above: first platform |
1574 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1573 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1575 // platform independent FrameHostMsg, then ifdefs for platform specific | 1574 // platform independent FrameHostMsg, then ifdefs for platform specific |
1576 // FrameHostMsg. | 1575 // FrameHostMsg. |
OLD | NEW |