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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 // Specifies properties for a new RenderWidget that will be attached to the | 445 // Specifies properties for a new RenderWidget that will be attached to the |
446 // new RenderFrame (if one is needed). | 446 // new RenderFrame (if one is needed). |
447 IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params) | 447 IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params) |
448 IPC_STRUCT_END() | 448 IPC_STRUCT_END() |
449 | 449 |
450 // Parameters included with an OpenURL request. |frame_unique_name| is only | 450 // Parameters included with an OpenURL request. |frame_unique_name| is only |
451 // specified if |is_history_navigation_in_new_child| is true, for the case that | 451 // specified if |is_history_navigation_in_new_child| is true, for the case that |
452 // the browser process should look for an existing history item for the frame. | 452 // the browser process should look for an existing history item for the frame. |
453 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) | 453 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) |
454 IPC_STRUCT_MEMBER(GURL, url) | 454 IPC_STRUCT_MEMBER(GURL, url) |
| 455 IPC_STRUCT_MEMBER(bool, uses_post) |
| 456 IPC_STRUCT_MEMBER(scoped_refptr<content::ResourceRequestBodyImpl>, |
| 457 resource_request_body) |
455 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 458 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
456 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 459 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
457 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) | 460 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) |
458 IPC_STRUCT_MEMBER(bool, user_gesture) | 461 IPC_STRUCT_MEMBER(bool, user_gesture) |
459 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) | 462 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) |
460 IPC_STRUCT_MEMBER(std::string, frame_unique_name) | 463 IPC_STRUCT_MEMBER(std::string, frame_unique_name) |
461 IPC_STRUCT_END() | 464 IPC_STRUCT_END() |
462 | 465 |
463 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) | 466 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) |
464 // Text tracks on/off state | 467 // Text tracks on/off state |
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1530 // nearest find result in the sending frame. | 1533 // nearest find result in the sending frame. |
1531 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1534 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1532 int /* nfr_request_id */, | 1535 int /* nfr_request_id */, |
1533 float /* distance */) | 1536 float /* distance */) |
1534 #endif | 1537 #endif |
1535 | 1538 |
1536 // Adding a new message? Stick to the sort order above: first platform | 1539 // Adding a new message? Stick to the sort order above: first platform |
1537 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1540 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1538 // platform independent FrameHostMsg, then ifdefs for platform specific | 1541 // platform independent FrameHostMsg, then ifdefs for platform specific |
1539 // FrameHostMsg. | 1542 // FrameHostMsg. |
OLD | NEW |