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

Unified Diff: chrome/browser/sessions/session_service.cc

Issue 8956059: Rename NavigationController to NavigationControllerImpl and put it into the content namespace. Al... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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: chrome/browser/sessions/session_service.cc
===================================================================
--- chrome/browser/sessions/session_service.cc (revision 115900)
+++ chrome/browser/sessions/session_service.cc (working copy)
@@ -43,6 +43,7 @@
#endif
using base::Time;
+using content::NavigationEntry;
// Identifier for commands written to file.
static const SessionCommand::id_type kCommandSetTabWindow = 0;
@@ -362,7 +363,7 @@
const SessionID& window_id,
const SessionID& tab_id,
int index,
- const content::NavigationEntry& entry) {
+ const NavigationEntry& entry) {
if (!ShouldTrackEntry(entry.GetVirtualURL()) ||
!ShouldTrackChangesToWindow(window_id)) {
return;
@@ -1139,7 +1140,7 @@
wrapper->extension_tab_helper()->extension_app()->id()));
}
for (int i = min_index; i < max_index; ++i) {
- const content::NavigationEntry* entry = (i == pending_index) ?
+ const NavigationEntry* entry = (i == pending_index) ?
tab->tab_contents()->GetController().GetPendingEntry() :
tab->tab_contents()->GetController().GetEntryAtIndex(i);
DCHECK(entry);
« no previous file with comments | « chrome/browser/sessions/base_session_service.cc ('k') | chrome/browser/sessions/session_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698