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

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: 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams) 254 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
255 IPC_STRUCT_TRAITS_MEMBER(url) 255 IPC_STRUCT_TRAITS_MEMBER(url)
256 IPC_STRUCT_TRAITS_MEMBER(referrer) 256 IPC_STRUCT_TRAITS_MEMBER(referrer)
257 IPC_STRUCT_TRAITS_MEMBER(transition) 257 IPC_STRUCT_TRAITS_MEMBER(transition)
258 IPC_STRUCT_TRAITS_MEMBER(navigation_type) 258 IPC_STRUCT_TRAITS_MEMBER(navigation_type)
259 IPC_STRUCT_TRAITS_MEMBER(allow_download) 259 IPC_STRUCT_TRAITS_MEMBER(allow_download)
260 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp) 260 IPC_STRUCT_TRAITS_MEMBER(ui_timestamp)
261 IPC_STRUCT_TRAITS_MEMBER(report_type) 261 IPC_STRUCT_TRAITS_MEMBER(report_type)
262 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) 262 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url)
263 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) 263 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url)
264 IPC_STRUCT_TRAITS_MEMBER(lock_history_list)
264 IPC_STRUCT_TRAITS_END() 265 IPC_STRUCT_TRAITS_END()
265 266
266 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) 267 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
267 IPC_STRUCT_TRAITS_MEMBER(method) 268 IPC_STRUCT_TRAITS_MEMBER(method)
268 IPC_STRUCT_TRAITS_MEMBER(headers) 269 IPC_STRUCT_TRAITS_MEMBER(headers)
269 IPC_STRUCT_TRAITS_MEMBER(load_flags) 270 IPC_STRUCT_TRAITS_MEMBER(load_flags)
270 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 271 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
271 IPC_STRUCT_TRAITS_END() 272 IPC_STRUCT_TRAITS_END()
272 273
273 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) 274 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams)
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 FrameMsg_PostMessage_Params) 996 FrameMsg_PostMessage_Params)
996 997
997 #if defined(OS_MACOSX) || defined(OS_ANDROID) 998 #if defined(OS_MACOSX) || defined(OS_ANDROID)
998 999
999 // Message to show/hide a popup menu using native controls. 1000 // Message to show/hide a popup menu using native controls.
1000 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1001 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1001 FrameHostMsg_ShowPopup_Params) 1002 FrameHostMsg_ShowPopup_Params)
1002 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1003 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1003 1004
1004 #endif 1005 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698