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

Unified Diff: content/common/navigation_params.cc

Issue 2316003002: Notify the renderer if a history navigation has no subframe items. (Closed)
Patch Set: Clean up Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/common/navigation_params.cc
diff --git a/content/common/navigation_params.cc b/content/common/navigation_params.cc
index f11cb2bbc21c971fc92d02269c38a72d98132f85..0e3eddba0ae96f772ea47b51505ce8c15d0ff1c4 100644
--- a/content/common/navigation_params.cc
+++ b/content/common/navigation_params.cc
@@ -139,6 +139,7 @@ RequestNavigationParams::RequestNavigationParams()
nav_entry_id(0),
is_same_document_history_load(false),
is_history_navigation_in_new_child(false),
+ has_subtree_history_items(false),
has_committed_real_load(false),
intended_as_new_entry(false),
pending_history_list_offset(-1),
@@ -158,6 +159,7 @@ RequestNavigationParams::RequestNavigationParams(
int nav_entry_id,
bool is_same_document_history_load,
bool is_history_navigation_in_new_child,
+ bool has_subtree_history_items,
bool has_committed_real_load,
bool intended_as_new_entry,
int pending_history_list_offset,
@@ -174,6 +176,7 @@ RequestNavigationParams::RequestNavigationParams(
nav_entry_id(nav_entry_id),
is_same_document_history_load(is_same_document_history_load),
is_history_navigation_in_new_child(is_history_navigation_in_new_child),
+ has_subtree_history_items(has_subtree_history_items),
has_committed_real_load(has_committed_real_load),
intended_as_new_entry(intended_as_new_entry),
pending_history_list_offset(pending_history_list_offset),

Powered by Google App Engine
This is Rietveld 408576698