| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/navigation_params.h" | 5 #include "content/common/navigation_params.h" |
| 6 | 6 |
| 7 #include "base/memory/ref_counted_memory.h" | 7 #include "base/memory/ref_counted_memory.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 StartNavigationParams::~StartNavigationParams() { | 78 StartNavigationParams::~StartNavigationParams() { |
| 79 } | 79 } |
| 80 | 80 |
| 81 RequestNavigationParams::RequestNavigationParams() | 81 RequestNavigationParams::RequestNavigationParams() |
| 82 : is_overriding_user_agent(false), | 82 : is_overriding_user_agent(false), |
| 83 browser_navigation_start(base::TimeTicks::Now()), | 83 browser_navigation_start(base::TimeTicks::Now()), |
| 84 can_load_local_resources(false), | 84 can_load_local_resources(false), |
| 85 request_time(base::Time::Now()), | 85 request_time(base::Time::Now()), |
| 86 page_id(-1), | 86 page_id(-1), |
| 87 nav_entry_id(0), | |
| 88 intended_as_new_entry(false), | |
| 89 pending_history_list_offset(-1), | 87 pending_history_list_offset(-1), |
| 90 current_history_list_offset(-1), | 88 current_history_list_offset(-1), |
| 91 current_history_list_length(0), | 89 current_history_list_length(0), |
| 92 should_clear_history_list(false) { | 90 should_clear_history_list(false) { |
| 93 } | 91 } |
| 94 | 92 |
| 95 RequestNavigationParams::RequestNavigationParams( | 93 RequestNavigationParams::RequestNavigationParams( |
| 96 bool is_overriding_user_agent, | 94 bool is_overriding_user_agent, |
| 97 base::TimeTicks navigation_start, | 95 base::TimeTicks navigation_start, |
| 98 const std::vector<GURL>& redirects, | 96 const std::vector<GURL>& redirects, |
| 99 bool can_load_local_resources, | 97 bool can_load_local_resources, |
| 100 base::Time request_time, | 98 base::Time request_time, |
| 101 const PageState& page_state, | 99 const PageState& page_state, |
| 102 int32 page_id, | 100 int32 page_id, |
| 103 int nav_entry_id, | |
| 104 bool intended_as_new_entry, | |
| 105 int pending_history_list_offset, | 101 int pending_history_list_offset, |
| 106 int current_history_list_offset, | 102 int current_history_list_offset, |
| 107 int current_history_list_length, | 103 int current_history_list_length, |
| 108 bool should_clear_history_list) | 104 bool should_clear_history_list) |
| 109 : is_overriding_user_agent(is_overriding_user_agent), | 105 : is_overriding_user_agent(is_overriding_user_agent), |
| 110 browser_navigation_start(navigation_start), | 106 browser_navigation_start(navigation_start), |
| 111 redirects(redirects), | 107 redirects(redirects), |
| 112 can_load_local_resources(can_load_local_resources), | 108 can_load_local_resources(can_load_local_resources), |
| 113 request_time(request_time), | 109 request_time(request_time), |
| 114 page_state(page_state), | 110 page_state(page_state), |
| 115 page_id(page_id), | 111 page_id(page_id), |
| 116 nav_entry_id(nav_entry_id), | |
| 117 intended_as_new_entry(intended_as_new_entry), | |
| 118 pending_history_list_offset(pending_history_list_offset), | 112 pending_history_list_offset(pending_history_list_offset), |
| 119 current_history_list_offset(current_history_list_offset), | 113 current_history_list_offset(current_history_list_offset), |
| 120 current_history_list_length(current_history_list_length), | 114 current_history_list_length(current_history_list_length), |
| 121 should_clear_history_list(should_clear_history_list) { | 115 should_clear_history_list(should_clear_history_list) { |
| 122 } | 116 } |
| 123 | 117 |
| 124 RequestNavigationParams::~RequestNavigationParams() { | 118 RequestNavigationParams::~RequestNavigationParams() { |
| 125 } | 119 } |
| 126 | 120 |
| 127 NavigationParams::NavigationParams( | 121 NavigationParams::NavigationParams( |
| 128 const CommonNavigationParams& common_params, | 122 const CommonNavigationParams& common_params, |
| 129 const StartNavigationParams& start_params, | 123 const StartNavigationParams& start_params, |
| 130 const RequestNavigationParams& request_params) | 124 const RequestNavigationParams& request_params) |
| 131 : common_params(common_params), | 125 : common_params(common_params), |
| 132 start_params(start_params), | 126 start_params(start_params), |
| 133 request_params(request_params) { | 127 request_params(request_params) { |
| 134 } | 128 } |
| 135 | 129 |
| 136 NavigationParams::~NavigationParams() { | 130 NavigationParams::~NavigationParams() { |
| 137 } | 131 } |
| 138 | 132 |
| 139 } // namespace content | 133 } // namespace content |
| OLD | NEW |