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

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

Issue 2494633004: Remove about:srcdoc url conversion. (Closed)
Patch Set: Addressed comments (@nasko). Created 4 years, 1 month 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 // Timestamp at which the UI action that triggered the navigation originated. 289 // Timestamp at which the UI action that triggered the navigation originated.
290 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp) 290 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp)
291 291
292 // The insecure request policy the document for the load is enforcing. 292 // The insecure request policy the document for the load is enforcing.
293 IPC_STRUCT_MEMBER(blink::WebInsecureRequestPolicy, insecure_request_policy) 293 IPC_STRUCT_MEMBER(blink::WebInsecureRequestPolicy, insecure_request_policy)
294 294
295 // True if the document for the load is a unique origin that should be 295 // True if the document for the load is a unique origin that should be
296 // considered potentially trustworthy. 296 // considered potentially trustworthy.
297 IPC_STRUCT_MEMBER(bool, has_potentially_trustworthy_unique_origin) 297 IPC_STRUCT_MEMBER(bool, has_potentially_trustworthy_unique_origin)
298 298
299 // True if the navigation originated as an srcdoc attribute.
300 IPC_STRUCT_MEMBER(bool, is_srcdoc)
301
302 // See WebSearchableFormData for a description of these. 299 // See WebSearchableFormData for a description of these.
303 // Not used by PlzNavigate: in that case these fields are sent to the browser 300 // Not used by PlzNavigate: in that case these fields are sent to the browser
304 // in BeginNavigationParams. 301 // in BeginNavigationParams.
305 IPC_STRUCT_MEMBER(GURL, searchable_form_url) 302 IPC_STRUCT_MEMBER(GURL, searchable_form_url)
306 IPC_STRUCT_MEMBER(std::string, searchable_form_encoding) 303 IPC_STRUCT_MEMBER(std::string, searchable_form_encoding)
307 IPC_STRUCT_END() 304 IPC_STRUCT_END()
308 305
309 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) 306 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params)
310 // Whether the data format is supplied as serialized script value, or as 307 // Whether the data format is supplied as serialized script value, or as
311 // a simple string. If it is a raw string, must be converted from string to a 308 // a simple string. If it is a raw string, must be converted from string to a
(...skipping 1207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1519 // nearest find result in the sending frame. 1516 // nearest find result in the sending frame.
1520 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1517 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1521 int /* nfr_request_id */, 1518 int /* nfr_request_id */,
1522 float /* distance */) 1519 float /* distance */)
1523 #endif 1520 #endif
1524 1521
1525 // Adding a new message? Stick to the sort order above: first platform 1522 // Adding a new message? Stick to the sort order above: first platform
1526 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1523 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1527 // platform independent FrameHostMsg, then ifdefs for platform specific 1524 // platform independent FrameHostMsg, then ifdefs for platform specific
1528 // FrameHostMsg. 1525 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698