| 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;
|
| }
|
|
|