| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 // Specifies properties for a new RenderWidget that will be attached to the | 441 // Specifies properties for a new RenderWidget that will be attached to the |
| 442 // new RenderFrame (if one is needed). | 442 // new RenderFrame (if one is needed). |
| 443 IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params) | 443 IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params) |
| 444 IPC_STRUCT_END() | 444 IPC_STRUCT_END() |
| 445 | 445 |
| 446 // Parameters included with an OpenURL request. |frame_unique_name| is only | 446 // Parameters included with an OpenURL request. |frame_unique_name| is only |
| 447 // specified if |is_history_navigation_in_new_child| is true, for the case that | 447 // specified if |is_history_navigation_in_new_child| is true, for the case that |
| 448 // the browser process should look for an existing history item for the frame. | 448 // the browser process should look for an existing history item for the frame. |
| 449 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) | 449 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) |
| 450 IPC_STRUCT_MEMBER(GURL, url) | 450 IPC_STRUCT_MEMBER(GURL, url) |
| 451 IPC_STRUCT_MEMBER(std::string, method) |
| 452 IPC_STRUCT_MEMBER(scoped_refptr<content::ResourceRequestBody>, |
| 453 resource_request_body) |
| 451 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 454 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
| 452 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 455 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
| 453 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) | 456 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) |
| 454 IPC_STRUCT_MEMBER(bool, user_gesture) | 457 IPC_STRUCT_MEMBER(bool, user_gesture) |
| 455 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) | 458 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) |
| 456 IPC_STRUCT_MEMBER(std::string, frame_unique_name) | 459 IPC_STRUCT_MEMBER(std::string, frame_unique_name) |
| 457 IPC_STRUCT_END() | 460 IPC_STRUCT_END() |
| 458 | 461 |
| 459 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) | 462 IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params) |
| 460 // Text tracks on/off state | 463 // Text tracks on/off state |
| (...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1471 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1474 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1472 int /* version */, | 1475 int /* version */, |
| 1473 std::vector<gfx::RectF> /* rects */, | 1476 std::vector<gfx::RectF> /* rects */, |
| 1474 gfx::RectF /* active_rect */) | 1477 gfx::RectF /* active_rect */) |
| 1475 #endif | 1478 #endif |
| 1476 | 1479 |
| 1477 // Adding a new message? Stick to the sort order above: first platform | 1480 // Adding a new message? Stick to the sort order above: first platform |
| 1478 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1481 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1479 // platform independent FrameHostMsg, then ifdefs for platform specific | 1482 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1480 // FrameHostMsg. | 1483 // FrameHostMsg. |
| OLD | NEW |