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

Unified Diff: chrome/browser/ui/gtk/location_bar_view_gtk.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/gtk/location_bar_view_gtk.cc
===================================================================
--- chrome/browser/ui/gtk/location_bar_view_gtk.cc (revision 115900)
+++ chrome/browser/ui/gtk/location_bar_view_gtk.cc (working copy)
@@ -70,6 +70,7 @@
#include "ui/gfx/image/image.h"
#include "webkit/glue/window_open_disposition.h"
+using content::NavigationEntry;
using content::OpenURLParams;
namespace {
@@ -1047,7 +1048,7 @@
if (event->x == 0 && event->y == 0)
return FALSE;
- content::NavigationEntry* nav_entry = tab->GetController().GetActiveEntry();
+ NavigationEntry* nav_entry = tab->GetController().GetActiveEntry();
if (!nav_entry) {
NOTREACHED();
return FALSE;

Powered by Google App Engine
This is Rietveld 408576698