| 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..2b6d2e4749901ba418e838c5d3c67f322af858b1 100644
|
| --- a/content/public/browser/navigation_controller.cc
|
| +++ b/content/public/browser/navigation_controller.cc
|
| @@ -18,7 +18,8 @@ NavigationController::LoadURLParams::LoadURLParams(const GURL& url)
|
| browser_initiated_post_data(NULL),
|
| can_load_local_resources(false),
|
| should_replace_current_entry(false),
|
| - should_clear_history_list(false) {
|
| + should_clear_history_list(false),
|
| + is_transition_navigation(false) {
|
| }
|
|
|
| NavigationController::LoadURLParams::~LoadURLParams() {
|
| @@ -39,7 +40,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),
|
| + is_transition_navigation(false) {
|
| }
|
|
|
| NavigationController::LoadURLParams&
|
| @@ -60,6 +62,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;
|
| + is_transition_navigation = other.is_transition_navigation;
|
|
|
| return *this;
|
| }
|
|
|