| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 290 |
| 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 | |
| 301 // True if the navigation originated as an srcdoc attribute. | |
| 302 IPC_STRUCT_MEMBER(bool, is_srcdoc) | |
| 303 IPC_STRUCT_END() | 300 IPC_STRUCT_END() |
| 304 | 301 |
| 305 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) | 302 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) |
| 306 // Whether the data format is supplied as serialized script value, or as | 303 // Whether the data format is supplied as serialized script value, or as |
| 307 // a simple string. If it is a raw string, must be converted from string to a | 304 // a simple string. If it is a raw string, must be converted from string to a |
| 308 // WebSerializedScriptValue in the renderer process. | 305 // WebSerializedScriptValue in the renderer process. |
| 309 IPC_STRUCT_MEMBER(bool, is_data_raw_string) | 306 IPC_STRUCT_MEMBER(bool, is_data_raw_string) |
| 310 | 307 |
| 311 // The serialized script value. | 308 // The serialized script value. |
| 312 IPC_STRUCT_MEMBER(base::string16, data) | 309 IPC_STRUCT_MEMBER(base::string16, data) |
| (...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1513 // nearest find result in the sending frame. | 1510 // nearest find result in the sending frame. |
| 1514 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1511 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1515 int /* nfr_request_id */, | 1512 int /* nfr_request_id */, |
| 1516 float /* distance */) | 1513 float /* distance */) |
| 1517 #endif | 1514 #endif |
| 1518 | 1515 |
| 1519 // Adding a new message? Stick to the sort order above: first platform | 1516 // Adding a new message? Stick to the sort order above: first platform |
| 1520 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1517 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1521 // platform independent FrameHostMsg, then ifdefs for platform specific | 1518 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1522 // FrameHostMsg. | 1519 // FrameHostMsg. |
| OLD | NEW |