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

Unified Diff: content/public/browser/navigation_controller.cc

Issue 378743002: Navigation transitions: Place transition page in same process as destination page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/public/browser/navigation_controller.cc
diff --git a/content/public/browser/navigation_controller.cc b/content/public/browser/navigation_controller.cc
index f0b3f46cc5074ae23ca5a11914b990366e47c24d..f204a0d3cb144f72e24b6573fdea359979275d7e 100644
--- a/content/public/browser/navigation_controller.cc
+++ b/content/public/browser/navigation_controller.cc
@@ -39,7 +39,8 @@ NavigationController::LoadURLParams::LoadURLParams(
virtual_url_for_data_url(other.virtual_url_for_data_url),
browser_initiated_post_data(other.browser_initiated_post_data),
should_replace_current_entry(false),
- should_clear_history_list(false) {
+ should_clear_history_list(false),
+ virtual_url_for_transition(other.virtual_url_for_transition) {
}
NavigationController::LoadURLParams&
@@ -60,6 +61,7 @@ NavigationController::LoadURLParams::operator=(
browser_initiated_post_data = other.browser_initiated_post_data;
should_replace_current_entry = other.should_replace_current_entry;
should_clear_history_list = other.should_clear_history_list;
+ virtual_url_for_transition = other.virtual_url_for_transition;
return *this;
}

Powered by Google App Engine
This is Rietveld 408576698