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

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: Addressed Charlie's comments Created 5 years, 4 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 IPC_STRUCT_MEMBER(std::vector<content::TransferredMessagePort>, message_ports) 255 IPC_STRUCT_MEMBER(std::vector<content::TransferredMessagePort>, message_ports)
256 IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids) 256 IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids)
257 IPC_STRUCT_END() 257 IPC_STRUCT_END()
258 258
259 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams) 259 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
260 IPC_STRUCT_TRAITS_MEMBER(url) 260 IPC_STRUCT_TRAITS_MEMBER(url)
261 IPC_STRUCT_TRAITS_MEMBER(referrer) 261 IPC_STRUCT_TRAITS_MEMBER(referrer)
262 IPC_STRUCT_TRAITS_MEMBER(transition) 262 IPC_STRUCT_TRAITS_MEMBER(transition)
263 IPC_STRUCT_TRAITS_MEMBER(navigation_type) 263 IPC_STRUCT_TRAITS_MEMBER(navigation_type)
264 IPC_STRUCT_TRAITS_MEMBER(allow_download) 264 IPC_STRUCT_TRAITS_MEMBER(allow_download)
265 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry)
265 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) 266 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp)
266 IPC_STRUCT_TRAITS_MEMBER(report_type) 267 IPC_STRUCT_TRAITS_MEMBER(report_type)
267 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) 268 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url)
268 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) 269 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url)
269 IPC_STRUCT_TRAITS_END() 270 IPC_STRUCT_TRAITS_END()
270 271
271 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) 272 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
272 IPC_STRUCT_TRAITS_MEMBER(method) 273 IPC_STRUCT_TRAITS_MEMBER(method)
273 IPC_STRUCT_TRAITS_MEMBER(headers) 274 IPC_STRUCT_TRAITS_MEMBER(headers)
274 IPC_STRUCT_TRAITS_MEMBER(load_flags) 275 IPC_STRUCT_TRAITS_MEMBER(load_flags)
275 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 276 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
276 IPC_STRUCT_TRAITS_END() 277 IPC_STRUCT_TRAITS_END()
277 278
278 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) 279 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams)
279 IPC_STRUCT_TRAITS_MEMBER(is_post) 280 IPC_STRUCT_TRAITS_MEMBER(is_post)
280 IPC_STRUCT_TRAITS_MEMBER(extra_headers) 281 IPC_STRUCT_TRAITS_MEMBER(extra_headers)
281 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data) 282 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data)
282 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry)
283 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) 283 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id)
284 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) 284 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id)
285 IPC_STRUCT_TRAITS_END() 285 IPC_STRUCT_TRAITS_END()
286 286
287 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) 287 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams)
288 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) 288 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent)
289 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) 289 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start)
290 IPC_STRUCT_TRAITS_MEMBER(redirects) 290 IPC_STRUCT_TRAITS_MEMBER(redirects)
291 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) 291 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources)
292 IPC_STRUCT_TRAITS_MEMBER(request_time) 292 IPC_STRUCT_TRAITS_MEMBER(request_time)
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
1018 FrameMsg_PostMessage_Params) 1018 FrameMsg_PostMessage_Params)
1019 1019
1020 #if defined(OS_MACOSX) || defined(OS_ANDROID) 1020 #if defined(OS_MACOSX) || defined(OS_ANDROID)
1021 1021
1022 // Message to show/hide a popup menu using native controls. 1022 // Message to show/hide a popup menu using native controls.
1023 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1023 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1024 FrameHostMsg_ShowPopup_Params) 1024 FrameHostMsg_ShowPopup_Params)
1025 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1025 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1026 1026
1027 #endif 1027 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698