| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 IPC_STRUCT_TRAITS_MEMBER(insecure_request_policy) | 444 IPC_STRUCT_TRAITS_MEMBER(insecure_request_policy) |
| 445 IPC_STRUCT_TRAITS_MEMBER(has_potentially_trustworthy_unique_origin) | 445 IPC_STRUCT_TRAITS_MEMBER(has_potentially_trustworthy_unique_origin) |
| 446 IPC_STRUCT_TRAITS_END() | 446 IPC_STRUCT_TRAITS_END() |
| 447 | 447 |
| 448 // Parameters included with an OpenURL request. | 448 // Parameters included with an OpenURL request. |
| 449 // |is_history_navigation_in_new_child| is true in the case that the browser | 449 // |is_history_navigation_in_new_child| is true in the case that the browser |
| 450 // process should look for an existing history item for the frame. | 450 // process should look for an existing history item for the frame. |
| 451 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) | 451 IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params) |
| 452 IPC_STRUCT_MEMBER(GURL, url) | 452 IPC_STRUCT_MEMBER(GURL, url) |
| 453 IPC_STRUCT_MEMBER(bool, uses_post) | 453 IPC_STRUCT_MEMBER(bool, uses_post) |
| 454 IPC_STRUCT_MEMBER(scoped_refptr<content::ResourceRequestBodyImpl>, | 454 IPC_STRUCT_MEMBER(scoped_refptr<content::ResourceRequestBody>, |
| 455 resource_request_body) | 455 resource_request_body) |
| 456 IPC_STRUCT_MEMBER(std::string, extra_headers) | 456 IPC_STRUCT_MEMBER(std::string, extra_headers) |
| 457 IPC_STRUCT_MEMBER(content::Referrer, referrer) | 457 IPC_STRUCT_MEMBER(content::Referrer, referrer) |
| 458 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) | 458 IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition) |
| 459 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) | 459 IPC_STRUCT_MEMBER(bool, should_replace_current_entry) |
| 460 IPC_STRUCT_MEMBER(bool, user_gesture) | 460 IPC_STRUCT_MEMBER(bool, user_gesture) |
| 461 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) | 461 IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child) |
| 462 IPC_STRUCT_MEMBER(blink::WebTriggeringEventInfo, triggering_event_info) | 462 IPC_STRUCT_MEMBER(blink::WebTriggeringEventInfo, triggering_event_info) |
| 463 IPC_STRUCT_END() | 463 IPC_STRUCT_END() |
| 464 | 464 |
| (...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 int /* nfr_request_id */, | 1704 int /* nfr_request_id */, |
| 1705 float /* distance */) | 1705 float /* distance */) |
| 1706 | 1706 |
| 1707 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1707 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1708 #endif | 1708 #endif |
| 1709 | 1709 |
| 1710 // Adding a new message? Stick to the sort order above: first platform | 1710 // Adding a new message? Stick to the sort order above: first platform |
| 1711 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1711 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1712 // platform independent FrameHostMsg, then ifdefs for platform specific | 1712 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1713 // FrameHostMsg. | 1713 // FrameHostMsg. |
| OLD | NEW |