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

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

Issue 1399363004: PlzNavigate: Make ServiceWorker work with PlzNavigate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Kinuko's comments Created 5 years, 1 month 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 IPC_STRUCT_TRAITS_MEMBER(page_state) 305 IPC_STRUCT_TRAITS_MEMBER(page_state)
306 IPC_STRUCT_TRAITS_MEMBER(page_id) 306 IPC_STRUCT_TRAITS_MEMBER(page_id)
307 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) 307 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id)
308 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) 308 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load)
309 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) 309 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load)
310 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) 310 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry)
311 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) 311 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset)
312 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) 312 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset)
313 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) 313 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length)
314 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) 314 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list)
315 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker)
315 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) 316 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
316 IPC_STRUCT_TRAITS_END() 317 IPC_STRUCT_TRAITS_END()
317 318
318 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 319 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
319 IPC_STRUCT_TRAITS_MEMBER(origin) 320 IPC_STRUCT_TRAITS_MEMBER(origin)
320 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 321 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
321 IPC_STRUCT_TRAITS_MEMBER(name) 322 IPC_STRUCT_TRAITS_MEMBER(name)
322 IPC_STRUCT_TRAITS_END() 323 IPC_STRUCT_TRAITS_END()
323 324
324 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) 325 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams)
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1201 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1201 FrameHostMsg_ShowPopup_Params) 1202 FrameHostMsg_ShowPopup_Params)
1202 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1203 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1203 1204
1204 #endif 1205 #endif
1205 1206
1206 // Adding a new message? Stick to the sort order above: first platform 1207 // Adding a new message? Stick to the sort order above: first platform
1207 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1208 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1208 // platform independent FrameHostMsg, then ifdefs for platform specific 1209 // platform independent FrameHostMsg, then ifdefs for platform specific
1209 // FrameHostMsg. 1210 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698