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

Unified Diff: chrome/browser/extensions/extension_navigation_observer.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/extensions/extension_navigation_observer.cc
===================================================================
--- chrome/browser/extensions/extension_navigation_observer.cc (revision 115900)
+++ chrome/browser/extensions/extension_navigation_observer.cc (working copy)
@@ -10,6 +10,8 @@
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/notification_service.h"
+using content::NavigationEntry;
+
ExtensionNavigationObserver::ExtensionNavigationObserver(Profile* profile)
: profile_(profile) {
RegisterForNotifications();
@@ -46,7 +48,7 @@
if (!in_progress_prompt_extension_id_.empty())
return;
- content::NavigationEntry* nav_entry = nav_controller->GetActiveEntry();
+ NavigationEntry* nav_entry = nav_controller->GetActiveEntry();
if (!nav_entry)
return;
« no previous file with comments | « chrome/browser/download/download_request_limiter.cc ('k') | chrome/browser/extensions/extension_page_actions_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698