| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 IPC_STRUCT_TRAITS_MEMBER(navigation_type) | 334 IPC_STRUCT_TRAITS_MEMBER(navigation_type) |
| 335 IPC_STRUCT_TRAITS_MEMBER(allow_download) | 335 IPC_STRUCT_TRAITS_MEMBER(allow_download) |
| 336 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) | 336 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) |
| 337 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) | 337 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) |
| 338 IPC_STRUCT_TRAITS_MEMBER(report_type) | 338 IPC_STRUCT_TRAITS_MEMBER(report_type) |
| 339 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) | 339 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) |
| 340 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) | 340 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) |
| 341 IPC_STRUCT_TRAITS_MEMBER(lofi_state) | 341 IPC_STRUCT_TRAITS_MEMBER(lofi_state) |
| 342 IPC_STRUCT_TRAITS_MEMBER(navigation_start) | 342 IPC_STRUCT_TRAITS_MEMBER(navigation_start) |
| 343 IPC_STRUCT_TRAITS_MEMBER(method) | 343 IPC_STRUCT_TRAITS_MEMBER(method) |
| 344 IPC_STRUCT_TRAITS_MEMBER(post_contains_passwords) |
| 344 IPC_STRUCT_TRAITS_MEMBER(post_data) | 345 IPC_STRUCT_TRAITS_MEMBER(post_data) |
| 345 IPC_STRUCT_TRAITS_END() | 346 IPC_STRUCT_TRAITS_END() |
| 346 | 347 |
| 347 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) | 348 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) |
| 348 IPC_STRUCT_TRAITS_MEMBER(headers) | 349 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 349 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 350 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 350 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 351 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 351 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 352 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
| 352 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 353 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 353 IPC_STRUCT_TRAITS_END() | 354 IPC_STRUCT_TRAITS_END() |
| (...skipping 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1501 // nearest find result in the sending frame. | 1502 // nearest find result in the sending frame. |
| 1502 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1503 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1503 int /* nfr_request_id */, | 1504 int /* nfr_request_id */, |
| 1504 float /* distance */) | 1505 float /* distance */) |
| 1505 #endif | 1506 #endif |
| 1506 | 1507 |
| 1507 // Adding a new message? Stick to the sort order above: first platform | 1508 // Adding a new message? Stick to the sort order above: first platform |
| 1508 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1509 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1509 // platform independent FrameHostMsg, then ifdefs for platform specific | 1510 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1510 // FrameHostMsg. | 1511 // FrameHostMsg. |
| OLD | NEW |