OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "chrome/browser/tab_contents/navigation_controller.h" | 5 #include "chrome/browser/tab_contents/navigation_controller.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 for (std::vector<TabNavigation>::const_iterator i = | 141 for (std::vector<TabNavigation>::const_iterator i = |
142 navigations.begin(); i != navigations.end(); ++i, ++page_id) { | 142 navigations.begin(); i != navigations.end(); ++i, ++page_id) { |
143 entries->push_back( | 143 entries->push_back( |
144 linked_ptr<NavigationEntry>(i->ToNavigationEntry(page_id))); | 144 linked_ptr<NavigationEntry>(i->ToNavigationEntry(page_id))); |
145 } | 145 } |
146 } | 146 } |
147 | 147 |
148 NavigationController::NavigationController(TabContents* contents, | 148 NavigationController::NavigationController(TabContents* contents, |
149 Profile* profile) | 149 Profile* profile) |
150 : profile_(profile), | 150 : profile_(profile), |
151 rvh_factory_(NULL), | |
152 pending_entry_(NULL), | 151 pending_entry_(NULL), |
153 last_committed_entry_index_(-1), | 152 last_committed_entry_index_(-1), |
154 pending_entry_index_(-1), | 153 pending_entry_index_(-1), |
155 transient_entry_index_(-1), | 154 transient_entry_index_(-1), |
156 active_contents_(contents), | 155 active_contents_(contents), |
157 max_restored_page_id_(-1), | 156 max_restored_page_id_(-1), |
158 ALLOW_THIS_IN_INITIALIZER_LIST(ssl_manager_(this, NULL)), | 157 ALLOW_THIS_IN_INITIALIZER_LIST(ssl_manager_(this, NULL)), |
159 needs_reload_(false), | 158 needs_reload_(false), |
160 load_pending_entry_when_active_(false) { | 159 load_pending_entry_when_active_(false) { |
161 if (contents) | 160 if (contents) |
162 RegisterTabContents(contents); | 161 RegisterTabContents(contents); |
163 DCHECK(profile_); | 162 DCHECK(profile_); |
164 } | 163 } |
165 | 164 |
166 NavigationController::NavigationController( | 165 NavigationController::NavigationController( |
167 Profile* profile, | 166 Profile* profile, |
168 const std::vector<TabNavigation>& navigations, | 167 const std::vector<TabNavigation>& navigations, |
169 int selected_navigation, | 168 int selected_navigation) |
170 RenderViewHostFactory* rvh_factory) | |
171 : profile_(profile), | 169 : profile_(profile), |
172 rvh_factory_(rvh_factory), | |
173 pending_entry_(NULL), | 170 pending_entry_(NULL), |
174 last_committed_entry_index_(-1), | 171 last_committed_entry_index_(-1), |
175 pending_entry_index_(-1), | 172 pending_entry_index_(-1), |
176 transient_entry_index_(-1), | 173 transient_entry_index_(-1), |
177 active_contents_(NULL), | 174 active_contents_(NULL), |
178 max_restored_page_id_(-1), | 175 max_restored_page_id_(-1), |
179 ALLOW_THIS_IN_INITIALIZER_LIST(ssl_manager_(this, NULL)), | 176 ALLOW_THIS_IN_INITIALIZER_LIST(ssl_manager_(this, NULL)), |
180 needs_reload_(true), | 177 needs_reload_(true), |
181 load_pending_entry_when_active_(false) { | 178 load_pending_entry_when_active_(false) { |
182 DCHECK(profile_); | 179 DCHECK(profile_); |
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 NotificationType::NAV_ENTRY_COMMITTED, | 1037 NotificationType::NAV_ENTRY_COMMITTED, |
1041 Source<NavigationController>(this), | 1038 Source<NavigationController>(this), |
1042 Details<LoadCommittedDetails>(details)); | 1039 Details<LoadCommittedDetails>(details)); |
1043 } | 1040 } |
1044 | 1041 |
1045 TabContents* NavigationController::GetTabContentsCreateIfNecessary( | 1042 TabContents* NavigationController::GetTabContentsCreateIfNecessary( |
1046 const NavigationEntry& entry) { | 1043 const NavigationEntry& entry) { |
1047 TabContents* contents = GetTabContents(entry.tab_type()); | 1044 TabContents* contents = GetTabContents(entry.tab_type()); |
1048 if (!contents) { | 1045 if (!contents) { |
1049 contents = TabContents::CreateWithType(entry.tab_type(), profile_, | 1046 contents = TabContents::CreateWithType(entry.tab_type(), profile_, |
1050 entry.site_instance(), rvh_factory_); | 1047 entry.site_instance()); |
1051 if (!contents->AsWebContents()) { | 1048 if (!contents->AsWebContents()) { |
1052 // Update the max page id, otherwise the newly created TabContents may | 1049 // Update the max page id, otherwise the newly created TabContents may |
1053 // have reset its max page id resulting in all new navigations. We only | 1050 // have reset its max page id resulting in all new navigations. We only |
1054 // do this for non-WebContents as WebContents takes care of this via its | 1051 // do this for non-WebContents as WebContents takes care of this via its |
1055 // SiteInstance. If this creation is the result of a restore, WebContents | 1052 // SiteInstance. If this creation is the result of a restore, WebContents |
1056 // handles invoking ReservePageIDRange to make sure the renderer's | 1053 // handles invoking ReservePageIDRange to make sure the renderer's |
1057 // max_page_id is updated to reflect the restored range of page ids. | 1054 // max_page_id is updated to reflect the restored range of page ids. |
1058 int32 max_page_id = contents->GetMaxPageID(); | 1055 int32 max_page_id = contents->GetMaxPageID(); |
1059 for (size_t i = 0; i < entries_.size(); ++i) { | 1056 for (size_t i = 0; i < entries_.size(); ++i) { |
1060 if (entries_[i]->tab_type() == entry.tab_type()) | 1057 if (entries_[i]->tab_type() == entry.tab_type()) |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1223 return i; | 1220 return i; |
1224 } | 1221 } |
1225 return -1; | 1222 return -1; |
1226 } | 1223 } |
1227 | 1224 |
1228 NavigationEntry* NavigationController::GetTransientEntry() const { | 1225 NavigationEntry* NavigationController::GetTransientEntry() const { |
1229 if (transient_entry_index_ == -1) | 1226 if (transient_entry_index_ == -1) |
1230 return NULL; | 1227 return NULL; |
1231 return entries_[transient_entry_index_].get(); | 1228 return entries_[transient_entry_index_].get(); |
1232 } | 1229 } |
OLD | NEW |