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

Unified Diff: chrome/browser/ui/views/location_bar/click_handler.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
« no previous file with comments | « chrome/browser/ui/toolbar/toolbar_model.cc ('k') | chrome/browser/ui/webui/cloud_print_signin_dialog.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/location_bar/click_handler.cc
===================================================================
--- chrome/browser/ui/views/location_bar/click_handler.cc (revision 115900)
+++ chrome/browser/ui/views/location_bar/click_handler.cc (working copy)
@@ -11,6 +11,8 @@
#include "content/public/browser/navigation_entry.h"
#include "ui/views/view.h"
+using content::NavigationEntry;
+
ClickHandler::ClickHandler(const views::View* owner,
LocationBarView* location_bar)
: owner_(owner),
@@ -27,7 +29,7 @@
return;
TabContents* tab = location_bar_->GetTabContentsWrapper()->tab_contents();
- content::NavigationEntry* nav_entry = tab->GetController().GetActiveEntry();
+ NavigationEntry* nav_entry = tab->GetController().GetActiveEntry();
if (!nav_entry) {
NOTREACHED();
return;
« no previous file with comments | « chrome/browser/ui/toolbar/toolbar_model.cc ('k') | chrome/browser/ui/webui/cloud_print_signin_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698