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

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

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

Powered by Google App Engine
This is Rietveld 408576698