| 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) | |
| 458 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 455 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
| 459 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 456 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
| 460 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) | 457 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) |
| 461 IPC_STRUCT_MEMBER(bool, user_gesture) | 458 IPC_STRUCT_MEMBER(bool, user_gesture) |
| 462 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) | 459 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) |
| 463 IPC_STRUCT_MEMBER(std::string, frame_unique_name) | 460 IPC_STRUCT_MEMBER(std::string, frame_unique_name) |
| 464 IPC_STRUCT_END() | 461 IPC_STRUCT_END() |
| 465 | 462 |
| 466 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) | 463 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) |
| 467 // Text tracks on/off state | 464 // Text tracks on/off state |
| (...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1533 // nearest find result in the sending frame. | 1530 // nearest find result in the sending frame. |
| 1534 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1531 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1535 int /* nfr_request_id */, | 1532 int /* nfr_request_id */, |
| 1536 float /* distance */) | 1533 float /* distance */) |
| 1537 #endif | 1534 #endif |
| 1538 | 1535 |
| 1539 // Adding a new message? Stick to the sort order above: first platform | 1536 // Adding a new message? Stick to the sort order above: first platform |
| 1540 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1537 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1541 // platform independent FrameHostMsg, then ifdefs for platform specific | 1538 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1542 // FrameHostMsg. | 1539 // FrameHostMsg. |
| OLD | NEW |