| Index: chrome/browser/login_prompt_mac.mm
|
| diff --git a/chrome/browser/login_prompt_mac.mm b/chrome/browser/login_prompt_mac.mm
|
| index dcc2d1b35255a1379d54bb307739b2ab48a70e2d..95b9f758b2f0bb7e53e3f6d3149311c30bc3cbbf 100644
|
| --- a/chrome/browser/login_prompt_mac.mm
|
| +++ b/chrome/browser/login_prompt_mac.mm
|
| @@ -29,13 +29,13 @@ using webkit_glue::PasswordForm;
|
| // LoginHandlerMac
|
|
|
| // This class simply forwards the authentication from the LoginView (on
|
| -// the UI thread) to the URLRequest (on the I/O thread).
|
| +// the UI thread) to the net::URLRequest (on the I/O thread).
|
| // This class uses ref counting to ensure that it lives until all InvokeLaters
|
| // have been called.
|
| class LoginHandlerMac : public LoginHandler,
|
| public ConstrainedWindowMacDelegateCustomSheet {
|
| public:
|
| - LoginHandlerMac(net::AuthChallengeInfo* auth_info, URLRequest* request)
|
| + LoginHandlerMac(net::AuthChallengeInfo* auth_info, net::URLRequest* request)
|
| : LoginHandler(auth_info, request),
|
| sheet_controller_(nil) {
|
| }
|
| @@ -117,7 +117,7 @@ class LoginHandlerMac : public LoginHandler,
|
|
|
| // static
|
| LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info,
|
| - URLRequest* request) {
|
| + net::URLRequest* request) {
|
| return new LoginHandlerMac(auth_info, request);
|
| }
|
|
|
|
|