Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: content/common/frame_messages.h

Issue 2494633004: Remove about:srcdoc url conversion. (Closed)
Patch Set: Rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 // Timestamp at which the UI action that triggered the navigation originated. 292 // Timestamp at which the UI action that triggered the navigation originated.
293 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp) 293 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp)
294 294
295 // The insecure request policy the document for the load is enforcing. 295 // The insecure request policy the document for the load is enforcing.
296 IPC_STRUCT_MEMBER(blink::WebInsecureRequestPolicy, insecure_request_policy) 296 IPC_STRUCT_MEMBER(blink::WebInsecureRequestPolicy, insecure_request_policy)
297 297
298 // True if the document for the load is a unique origin that should be 298 // True if the document for the load is a unique origin that should be
299 // considered potentially trustworthy. 299 // considered potentially trustworthy.
300 IPC_STRUCT_MEMBER(bool, has_potentially_trustworthy_unique_origin) 300 IPC_STRUCT_MEMBER(bool, has_potentially_trustworthy_unique_origin)
301 301
302 // True if the navigation originated as an srcdoc attribute.
303 IPC_STRUCT_MEMBER(bool, is_srcdoc)
304
305 // See WebSearchableFormData for a description of these. 302 // See WebSearchableFormData for a description of these.
306 // Not used by PlzNavigate: in that case these fields are sent to the browser 303 // Not used by PlzNavigate: in that case these fields are sent to the browser
307 // in BeginNavigationParams. 304 // in BeginNavigationParams.
308 IPC_STRUCT_MEMBER(GURL, searchable_form_url) 305 IPC_STRUCT_MEMBER(GURL, searchable_form_url)
309 IPC_STRUCT_MEMBER(std::string, searchable_form_encoding) 306 IPC_STRUCT_MEMBER(std::string, searchable_form_encoding)
310 IPC_STRUCT_END() 307 IPC_STRUCT_END()
311 308
312 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) 309 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params)
313 // Whether the data format is supplied as serialized script value, or as 310 // Whether the data format is supplied as serialized script value, or as
314 // a simple string. If it is a raw string, must be converted from string to a 311 // a simple string. If it is a raw string, must be converted from string to a
(...skipping 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after
1539 // nearest find result in the sending frame. 1536 // nearest find result in the sending frame.
1540 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1537 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1541 int /* nfr_request_id */, 1538 int /* nfr_request_id */,
1542 float /* distance */) 1539 float /* distance */)
1543 #endif 1540 #endif
1544 1541
1545 // Adding a new message? Stick to the sort order above: first platform 1542 // Adding a new message? Stick to the sort order above: first platform
1546 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1543 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1547 // platform independent FrameHostMsg, then ifdefs for platform specific 1544 // platform independent FrameHostMsg, then ifdefs for platform specific
1548 // FrameHostMsg. 1545 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698