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

Unified Diff: chrome/browser/login_prompt_win.cc

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_uitest.cc ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/login_prompt_win.cc
===================================================================
--- chrome/browser/login_prompt_win.cc (revision 43269)
+++ chrome/browser/login_prompt_win.cc (working copy)
@@ -31,7 +31,8 @@
class LoginHandlerWin : public LoginHandler,
public ConstrainedDialogDelegate {
public:
- explicit LoginHandlerWin(URLRequest* request) : LoginHandler(request) {
+ LoginHandlerWin(net::AuthChallengeInfo* auth_info, URLRequest* request)
+ : LoginHandler(auth_info, request) {
}
// LoginModelObserver implementation.
@@ -119,7 +120,7 @@
// will occur via an InvokeLater on the UI thread, which is guaranteed
// to happen after this is called (since this was InvokeLater'd first).
SetDialog(GetTabContentsForLogin()->CreateConstrainedDialog(this));
- SendNotifications();
+ NotifyAuthNeeded();
}
private:
@@ -135,6 +136,7 @@
};
// static
-LoginHandler* LoginHandler::Create(URLRequest* request) {
- return new LoginHandlerWin(request);
+LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info,
+ URLRequest* request) {
+ return new LoginHandlerWin(auth_info, request);
}
« no previous file with comments | « chrome/browser/login_prompt_uitest.cc ('k') | chrome/common/notification_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698