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

Unified Diff: chrome/browser/ui/login/login_prompt.cc

Issue 8983010: Convert WebContents to return a content::NavigationController instead of the implementation. Upda... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 12 months 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/login/login_prompt.cc
===================================================================
--- chrome/browser/ui/login/login_prompt.cc (revision 116232)
+++ chrome/browser/ui/login/login_prompt.cc (working copy)
@@ -278,7 +278,7 @@
content::NotificationService* service =
content::NotificationService::current();
- NavigationController* controller = NULL;
+ content::NavigationController* controller = NULL;
TabContents* requesting_contents = GetTabContentsForLogin();
if (requesting_contents)
@@ -297,7 +297,7 @@
content::NotificationService* service =
content::NotificationService::current();
- NavigationController* controller = NULL;
+ content::NavigationController* controller = NULL;
TabContents* requesting_contents = GetTabContentsForLogin();
if (requesting_contents)
@@ -321,7 +321,8 @@
content::NotificationService* service =
content::NotificationService::current();
- NavigationController* controller = &requesting_contents->GetController();
+ content::NavigationController* controller =
+ &requesting_contents->GetController();
AuthSuppliedLoginNotificationDetails details(this, username, password);
service->Notify(

Powered by Google App Engine
This is Rietveld 408576698