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

Unified Diff: chrome/browser/login_prompt_mac.mm

Issue 1528012: Notify all active login prompts when one login prompt is submitted. This allo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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
« no previous file with comments | « chrome/browser/login_prompt_gtk.cc ('k') | chrome/browser/login_prompt_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/login_prompt_mac.mm
===================================================================
--- chrome/browser/login_prompt_mac.mm (revision 43269)
+++ chrome/browser/login_prompt_mac.mm (working copy)
@@ -35,8 +35,8 @@
class LoginHandlerMac : public LoginHandler,
public ConstrainedWindowMacDelegateCustomSheet {
public:
- explicit LoginHandlerMac(URLRequest* request)
- : LoginHandler(request),
+ LoginHandlerMac(net::AuthChallengeInfo* auth_info, URLRequest* request)
+ : LoginHandler(auth_info, request),
sheet_controller_(nil) {
}
@@ -74,7 +74,7 @@
// to happen after this is called (since this was InvokeLater'd first).
SetDialog(GetTabContentsForLogin()->CreateConstrainedDialog(this));
- SendNotifications();
+ NotifyAuthNeeded();
}
// Overridden from ConstrainedWindowMacDelegate:
@@ -116,8 +116,9 @@
};
// static
-LoginHandler* LoginHandler::Create(URLRequest* request) {
- return new LoginHandlerMac(request);
+LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info,
+ URLRequest* request) {
+ return new LoginHandlerMac(auth_info, request);
}
// ----------------------------------------------------------------------------
« no previous file with comments | « chrome/browser/login_prompt_gtk.cc ('k') | chrome/browser/login_prompt_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698