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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) | 344 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) |
345 IPC_STRUCT_TRAITS_MEMBER(headers) | 345 IPC_STRUCT_TRAITS_MEMBER(headers) |
346 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 346 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
347 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 347 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
348 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 348 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
349 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 349 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
350 IPC_STRUCT_TRAITS_END() | 350 IPC_STRUCT_TRAITS_END() |
351 | 351 |
352 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) | 352 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) |
353 IPC_STRUCT_TRAITS_MEMBER(extra_headers) | 353 IPC_STRUCT_TRAITS_MEMBER(extra_headers) |
354 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data) | 354 IPC_STRUCT_TRAITS_MEMBER(post_data) |
355 #if defined(OS_ANDROID) | 355 #if defined(OS_ANDROID) |
356 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 356 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
357 #endif | 357 #endif |
358 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 358 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
359 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 359 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
360 IPC_STRUCT_TRAITS_END() | 360 IPC_STRUCT_TRAITS_END() |
361 | 361 |
362 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) | 362 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) |
363 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) | 363 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) |
364 IPC_STRUCT_TRAITS_MEMBER(redirects) | 364 IPC_STRUCT_TRAITS_MEMBER(redirects) |
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1449 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1449 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1450 int /* version */, | 1450 int /* version */, |
1451 std::vector<gfx::RectF> /* rects */, | 1451 std::vector<gfx::RectF> /* rects */, |
1452 gfx::RectF /* active_rect */) | 1452 gfx::RectF /* active_rect */) |
1453 #endif | 1453 #endif |
1454 | 1454 |
1455 // Adding a new message? Stick to the sort order above: first platform | 1455 // Adding a new message? Stick to the sort order above: first platform |
1456 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1456 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1457 // platform independent FrameHostMsg, then ifdefs for platform specific | 1457 // platform independent FrameHostMsg, then ifdefs for platform specific |
1458 // FrameHostMsg. | 1458 // FrameHostMsg. |
OLD | NEW |