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

Unified Diff: chrome/browser/ui/sync/tab_contents_wrapper_synced_tab_delegate.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/ui/sync/tab_contents_wrapper_synced_tab_delegate.cc
===================================================================
--- chrome/browser/ui/sync/tab_contents_wrapper_synced_tab_delegate.cc (revision 115900)
+++ chrome/browser/ui/sync/tab_contents_wrapper_synced_tab_delegate.cc (working copy)
@@ -12,6 +12,8 @@
#include "chrome/common/extensions/extension.h"
#include "content/public/browser/navigation_entry.h"
+using content::NavigationEntry;
+
TabContentsWrapperSyncedTabDelegate::TabContentsWrapperSyncedTabDelegate(
TabContentsWrapper* tab_contents_wrapper)
: tab_contents_wrapper_(tab_contents_wrapper) {}
@@ -59,21 +61,18 @@
pending_entry_index();
}
-content::NavigationEntry*
- TabContentsWrapperSyncedTabDelegate::GetPendingEntry() const {
+NavigationEntry* TabContentsWrapperSyncedTabDelegate::GetPendingEntry() const {
return
tab_contents_wrapper_->tab_contents()->GetController().GetPendingEntry();
}
-content::NavigationEntry*
- TabContentsWrapperSyncedTabDelegate::GetEntryAtIndex(int i)
+NavigationEntry* TabContentsWrapperSyncedTabDelegate::GetEntryAtIndex(int i)
const {
return
tab_contents_wrapper_->tab_contents()->GetController().GetEntryAtIndex(i);
}
-content::NavigationEntry*
- TabContentsWrapperSyncedTabDelegate::GetActiveEntry() const {
+NavigationEntry* TabContentsWrapperSyncedTabDelegate::GetActiveEntry() const {
return
tab_contents_wrapper_->tab_contents()->GetController().GetActiveEntry();
}
« no previous file with comments | « chrome/browser/ui/search_engines/search_engine_tab_helper.cc ('k') | chrome/browser/ui/toolbar/back_forward_menu_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698