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

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

Issue 1182453002: PlzNavigate: support for should_replace_current_entry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 5 years, 6 months 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 "cc/surfaces/surface_id.h" 8 #include "cc/surfaces/surface_id.h"
9 #include "cc/surfaces/surface_sequence.h" 9 #include "cc/surfaces/surface_sequence.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 IPC_STRUCT_MEMBER(std::vector<content::TransferredMessagePort>, message_ports) 252 IPC_STRUCT_MEMBER(std::vector<content::TransferredMessagePort>, message_ports)
253 IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids) 253 IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids)
254 IPC_STRUCT_END() 254 IPC_STRUCT_END()
255 255
256 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams) 256 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
257 IPC_STRUCT_TRAITS_MEMBER(url) 257 IPC_STRUCT_TRAITS_MEMBER(url)
258 IPC_STRUCT_TRAITS_MEMBER(referrer) 258 IPC_STRUCT_TRAITS_MEMBER(referrer)
259 IPC_STRUCT_TRAITS_MEMBER(transition) 259 IPC_STRUCT_TRAITS_MEMBER(transition)
260 IPC_STRUCT_TRAITS_MEMBER(navigation_type) 260 IPC_STRUCT_TRAITS_MEMBER(navigation_type)
261 IPC_STRUCT_TRAITS_MEMBER(allow_download) 261 IPC_STRUCT_TRAITS_MEMBER(allow_download)
262 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry)
262 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) 263 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp)
263 IPC_STRUCT_TRAITS_MEMBER(report_type) 264 IPC_STRUCT_TRAITS_MEMBER(report_type)
264 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) 265 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url)
265 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) 266 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url)
266 IPC_STRUCT_TRAITS_END() 267 IPC_STRUCT_TRAITS_END()
267 268
268 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) 269 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
269 IPC_STRUCT_TRAITS_MEMBER(method) 270 IPC_STRUCT_TRAITS_MEMBER(method)
270 IPC_STRUCT_TRAITS_MEMBER(headers) 271 IPC_STRUCT_TRAITS_MEMBER(headers)
271 IPC_STRUCT_TRAITS_MEMBER(load_flags) 272 IPC_STRUCT_TRAITS_MEMBER(load_flags)
272 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 273 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
273 IPC_STRUCT_TRAITS_END() 274 IPC_STRUCT_TRAITS_END()
274 275
275 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) 276 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams)
276 IPC_STRUCT_TRAITS_MEMBER(is_post) 277 IPC_STRUCT_TRAITS_MEMBER(is_post)
277 IPC_STRUCT_TRAITS_MEMBER(extra_headers) 278 IPC_STRUCT_TRAITS_MEMBER(extra_headers)
278 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data) 279 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data)
279 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry)
280 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) 280 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id)
281 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) 281 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id)
282 IPC_STRUCT_TRAITS_END() 282 IPC_STRUCT_TRAITS_END()
283 283
284 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) 284 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams)
285 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) 285 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent)
286 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) 286 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start)
287 IPC_STRUCT_TRAITS_MEMBER(redirects) 287 IPC_STRUCT_TRAITS_MEMBER(redirects)
288 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) 288 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources)
289 IPC_STRUCT_TRAITS_MEMBER(request_time) 289 IPC_STRUCT_TRAITS_MEMBER(request_time)
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 FrameMsg_PostMessage_Params) 998 FrameMsg_PostMessage_Params)
999 999
1000 #if defined(OS_MACOSX) || defined(OS_ANDROID) 1000 #if defined(OS_MACOSX) || defined(OS_ANDROID)
1001 1001
1002 // Message to show/hide a popup menu using native controls. 1002 // Message to show/hide a popup menu using native controls.
1003 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1003 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1004 FrameHostMsg_ShowPopup_Params) 1004 FrameHostMsg_ShowPopup_Params)
1005 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1005 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1006 1006
1007 #endif 1007 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698