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

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

Issue 2584513003: PlzNavigate: identify same-page browser-initiated navigation. (Closed)
Patch Set: Allow renderer-initiated reloads. Created 3 years, 11 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 IPC_STRUCT_TRAITS_MEMBER(fetch_start) 366 IPC_STRUCT_TRAITS_MEMBER(fetch_start)
367 IPC_STRUCT_TRAITS_END() 367 IPC_STRUCT_TRAITS_END()
368 368
369 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams) 369 IPC_STRUCT_TRAITS_BEGIN(content::RequestNavigationParams)
370 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent) 370 IPC_STRUCT_TRAITS_MEMBER(is_overriding_user_agent)
371 IPC_STRUCT_TRAITS_MEMBER(redirects) 371 IPC_STRUCT_TRAITS_MEMBER(redirects)
372 IPC_STRUCT_TRAITS_MEMBER(redirect_response) 372 IPC_STRUCT_TRAITS_MEMBER(redirect_response)
373 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources) 373 IPC_STRUCT_TRAITS_MEMBER(can_load_local_resources)
374 IPC_STRUCT_TRAITS_MEMBER(page_state) 374 IPC_STRUCT_TRAITS_MEMBER(page_state)
375 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) 375 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id)
376 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load)
377 IPC_STRUCT_TRAITS_MEMBER(is_history_navigation_in_new_child) 376 IPC_STRUCT_TRAITS_MEMBER(is_history_navigation_in_new_child)
378 IPC_STRUCT_TRAITS_MEMBER(subframe_unique_names) 377 IPC_STRUCT_TRAITS_MEMBER(subframe_unique_names)
379 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) 378 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load)
380 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) 379 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry)
381 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) 380 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset)
382 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) 381 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset)
383 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) 382 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length)
384 IPC_STRUCT_TRAITS_MEMBER(is_view_source) 383 IPC_STRUCT_TRAITS_MEMBER(is_view_source)
385 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) 384 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list)
386 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) 385 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker)
(...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 // nearest find result in the sending frame. 1553 // nearest find result in the sending frame.
1555 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1554 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1556 int /* nfr_request_id */, 1555 int /* nfr_request_id */,
1557 float /* distance */) 1556 float /* distance */)
1558 #endif 1557 #endif
1559 1558
1560 // Adding a new message? Stick to the sort order above: first platform 1559 // Adding a new message? Stick to the sort order above: first platform
1561 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1560 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1562 // platform independent FrameHostMsg, then ifdefs for platform specific 1561 // platform independent FrameHostMsg, then ifdefs for platform specific
1563 // FrameHostMsg. 1562 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698