| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 // Timestamp at which the UI action that triggered the navigation originated. | 291 // Timestamp at which the UI action that triggered the navigation originated. |
| 292 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp) | 292 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp) |
| 293 | 293 |
| 294 // The insecure request policy the document for the load is enforcing. | 294 // The insecure request policy the document for the load is enforcing. |
| 295 IPC_STRUCT_MEMBER(blink::WebInsecureRequestPolicy, insecure_request_policy) | 295 IPC_STRUCT_MEMBER(blink::WebInsecureRequestPolicy, insecure_request_policy) |
| 296 | 296 |
| 297 // True if the document for the load is a unique origin that should be | 297 // True if the document for the load is a unique origin that should be |
| 298 // considered potentially trustworthy. | 298 // considered potentially trustworthy. |
| 299 IPC_STRUCT_MEMBER(bool, has_potentially_trustworthy_unique_origin) | 299 IPC_STRUCT_MEMBER(bool, has_potentially_trustworthy_unique_origin) |
| 300 | 300 |
| 301 // True if the navigation originated as an srcdoc attribute. | |
| 302 IPC_STRUCT_MEMBER(bool, is_srcdoc) | |
| 303 | |
| 304 // See WebSearchableFormData for a description of these. | 301 // See WebSearchableFormData for a description of these. |
| 305 // Not used by PlzNavigate: in that case these fields are sent to the browser | 302 // Not used by PlzNavigate: in that case these fields are sent to the browser |
| 306 // in BeginNavigationParams. | 303 // in BeginNavigationParams. |
| 307 IPC_STRUCT_MEMBER(GURL, searchable_form_url) | 304 IPC_STRUCT_MEMBER(GURL, searchable_form_url) |
| 308 IPC_STRUCT_MEMBER(std::string, searchable_form_encoding) | 305 IPC_STRUCT_MEMBER(std::string, searchable_form_encoding) |
| 309 IPC_STRUCT_END() | 306 IPC_STRUCT_END() |
| 310 | 307 |
| 311 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) | 308 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) |
| 312 // Whether the data format is supplied as serialized script value, or as | 309 // Whether the data format is supplied as serialized script value, or as |
| 313 // a simple string. If it is a raw string, must be converted from string to a | 310 // a simple string. If it is a raw string, must be converted from string to a |
| (...skipping 1219 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 |