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

Unified Diff: content/common/navigation_params.cc

Issue 1148953014: Fix the commit type for out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failing tests Created 5 years, 7 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 57149de1edc7f3da6c99cdb9e5ec33bce2bf1b25..33d1c8ed2fcaebe99369e95855296bbc445ffac4 100644
--- a/content/common/navigation_params.cc
+++ b/content/common/navigation_params.cc
@@ -85,6 +85,7 @@ RequestNavigationParams::RequestNavigationParams()
request_time(base::Time::Now()),
page_id(-1),
nav_entry_id(0),
+ has_committed_real_load(false),
intended_as_new_entry(false),
pending_history_list_offset(-1),
current_history_list_offset(-1),
@@ -101,6 +102,7 @@ RequestNavigationParams::RequestNavigationParams(
const PageState& page_state,
int32 page_id,
int nav_entry_id,
+ bool has_committed_real_load,
bool intended_as_new_entry,
int pending_history_list_offset,
int current_history_list_offset,
@@ -114,6 +116,7 @@ RequestNavigationParams::RequestNavigationParams(
page_state(page_state),
page_id(page_id),
nav_entry_id(nav_entry_id),
+ has_committed_real_load(has_committed_real_load),
intended_as_new_entry(intended_as_new_entry),
pending_history_list_offset(pending_history_list_offset),
current_history_list_offset(current_history_list_offset),

Powered by Google App Engine
This is Rietveld 408576698