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

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

Issue 2099243002: PlzNavigate: properly set the initiator of the navigation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 IPC_STRUCT_TRAITS_END() 341 IPC_STRUCT_TRAITS_END()
342 342
343 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) 343 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
344 IPC_STRUCT_TRAITS_MEMBER(headers) 344 IPC_STRUCT_TRAITS_MEMBER(headers)
345 IPC_STRUCT_TRAITS_MEMBER(load_flags) 345 IPC_STRUCT_TRAITS_MEMBER(load_flags)
346 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 346 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
347 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) 347 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker)
348 IPC_STRUCT_TRAITS_MEMBER(request_context_type) 348 IPC_STRUCT_TRAITS_MEMBER(request_context_type)
349 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) 349 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url)
350 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) 350 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding)
351 IPC_STRUCT_TRAITS_MEMBER(initiator)
351 IPC_STRUCT_TRAITS_END() 352 IPC_STRUCT_TRAITS_END()
352 353
353 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) 354 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams)
354 IPC_STRUCT_TRAITS_MEMBER(extra_headers) 355 IPC_STRUCT_TRAITS_MEMBER(extra_headers)
355 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) 356 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id)
356 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) 357 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id)
357 IPC_STRUCT_TRAITS_END() 358 IPC_STRUCT_TRAITS_END()
358 359
359 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming) 360 IPC_STRUCT_TRAITS_BEGIN(content::NavigationTiming)
360 IPC_STRUCT_TRAITS_MEMBER(redirect_start) 361 IPC_STRUCT_TRAITS_MEMBER(redirect_start)
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 // nearest find result in the sending frame. 1512 // nearest find result in the sending frame.
1512 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1513 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1513 int /* nfr_request_id */, 1514 int /* nfr_request_id */,
1514 float /* distance */) 1515 float /* distance */)
1515 #endif 1516 #endif
1516 1517
1517 // 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
1518 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1519 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1519 // platform independent FrameHostMsg, then ifdefs for platform specific 1520 // platform independent FrameHostMsg, then ifdefs for platform specific
1520 // FrameHostMsg. 1521 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698