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

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

Issue 1315023004: PlzNavigate: Add parameters to navigation structures for ServiceWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: LOCATION bis Created 5 years, 2 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 IPC_STRUCT_TRAITS_MEMBER(report_type) 270 IPC_STRUCT_TRAITS_MEMBER(report_type)
271 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url) 271 IPC_STRUCT_TRAITS_MEMBER(base_url_for_data_url)
272 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url) 272 IPC_STRUCT_TRAITS_MEMBER(history_url_for_data_url)
273 IPC_STRUCT_TRAITS_END() 273 IPC_STRUCT_TRAITS_END()
274 274
275 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) 275 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
276 IPC_STRUCT_TRAITS_MEMBER(method) 276 IPC_STRUCT_TRAITS_MEMBER(method)
277 IPC_STRUCT_TRAITS_MEMBER(headers) 277 IPC_STRUCT_TRAITS_MEMBER(headers)
278 IPC_STRUCT_TRAITS_MEMBER(load_flags) 278 IPC_STRUCT_TRAITS_MEMBER(load_flags)
279 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 279 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
280 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker)
281 IPC_STRUCT_TRAITS_MEMBER(request_context_type)
280 IPC_STRUCT_TRAITS_END() 282 IPC_STRUCT_TRAITS_END()
281 283
282 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) 284 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams)
283 IPC_STRUCT_TRAITS_MEMBER(is_post) 285 IPC_STRUCT_TRAITS_MEMBER(is_post)
284 IPC_STRUCT_TRAITS_MEMBER(extra_headers) 286 IPC_STRUCT_TRAITS_MEMBER(extra_headers)
285 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data) 287 IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data)
286 #if defined(OS_ANDROID) 288 #if defined(OS_ANDROID)
287 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 289 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
288 #endif 290 #endif
289 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) 291 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id)
290 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) 292 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id)
291 IPC_STRUCT_TRAITS_END() 293 IPC_STRUCT_TRAITS_END()
292 294
293 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) 295 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams)
294 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) 296 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent)
295 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start) 297 IPC_STRUCT_TRAITS_MEMBER(browser_navigation_start)
296 IPC_STRUCT_TRAITS_MEMBER(redirects) 298 IPC_STRUCT_TRAITS_MEMBER(redirects)
297 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) 299 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources)
298 IPC_STRUCT_TRAITS_MEMBER(request_time) 300 IPC_STRUCT_TRAITS_MEMBER(request_time)
299 IPC_STRUCT_TRAITS_MEMBER(page_state) 301 IPC_STRUCT_TRAITS_MEMBER(page_state)
300 IPC_STRUCT_TRAITS_MEMBER(page_id) 302 IPC_STRUCT_TRAITS_MEMBER(page_id)
301 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) 303 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id)
302 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) 304 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load)
303 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) 305 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load)
304 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) 306 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry)
305 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) 307 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset)
306 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) 308 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset)
307 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) 309 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length)
308 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) 310 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list)
311 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
309 IPC_STRUCT_TRAITS_END() 312 IPC_STRUCT_TRAITS_END()
310 313
311 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 314 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
312 IPC_STRUCT_TRAITS_MEMBER(origin) 315 IPC_STRUCT_TRAITS_MEMBER(origin)
313 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 316 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
314 IPC_STRUCT_TRAITS_MEMBER(name) 317 IPC_STRUCT_TRAITS_MEMBER(name)
315 IPC_STRUCT_TRAITS_END() 318 IPC_STRUCT_TRAITS_END()
316 319
317 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) 320 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams)
318 // Gives the routing ID for the RenderWidget that will be attached to the 321 // Gives the routing ID for the RenderWidget that will be attached to the
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1196 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1194 FrameHostMsg_ShowPopup_Params) 1197 FrameHostMsg_ShowPopup_Params)
1195 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1198 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1196 1199
1197 #endif 1200 #endif
1198 1201
1199 // Adding a new message? Stick to the sort order above: first platform 1202 // Adding a new message? Stick to the sort order above: first platform
1200 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1203 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1201 // platform independent FrameHostMsg, then ifdefs for platform specific 1204 // platform independent FrameHostMsg, then ifdefs for platform specific
1202 // FrameHostMsg. 1205 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/loader/navigation_url_loader_unittest.cc ('k') | content/common/navigation_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698