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); |
} |
// ---------------------------------------------------------------------------- |