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

Unified Diff: chrome/browser/login_prompt_gtk.cc

Issue 1039004: Notify all active login prompts when one login prompt is submitted. This allo... (Closed) Base URL: http://src.chromium.org/svn/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.cc ('k') | chrome/browser/login_prompt_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/login_prompt_gtk.cc
===================================================================
--- chrome/browser/login_prompt_gtk.cc (revision 42470)
+++ chrome/browser/login_prompt_gtk.cc (working copy)
@@ -33,7 +33,8 @@
class LoginHandlerGtk : public LoginHandler,
public ConstrainedWindowGtkDelegate {
public:
- explicit LoginHandlerGtk(URLRequest* request) : LoginHandler(request) {
+ LoginHandlerGtk(net::AuthChallengeInfo* auth_info, URLRequest* request)
+ : LoginHandler(auth_info, request) {
}
virtual ~LoginHandlerGtk() {
@@ -107,7 +108,7 @@
// to happen after this is called (since this was InvokeLater'd first).
SetDialog(GetTabContentsForLogin()->CreateConstrainedDialog(this));
- SendNotifications();
+ NotifyAuthNeeded();
}
// Overridden from ConstrainedWindowGtkDelegate:
@@ -170,6 +171,7 @@
};
// static
-LoginHandler* LoginHandler::Create(URLRequest* request) {
- return new LoginHandlerGtk(request);
+LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info,
+ URLRequest* request) {
+ return new LoginHandlerGtk(auth_info, request);
}
« no previous file with comments | « chrome/browser/login_prompt.cc ('k') | chrome/browser/login_prompt_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698