Index: chrome/browser/login_prompt_win.cc |
diff --git a/chrome/browser/login_prompt_win.cc b/chrome/browser/login_prompt_win.cc |
index 703dbbbd1464c0f5a962d19313d0ea55b2134902..c99c75d6e55d8ba038105117ad693acc7146291f 100644 |
--- a/chrome/browser/login_prompt_win.cc |
+++ b/chrome/browser/login_prompt_win.cc |
@@ -26,13 +26,13 @@ using webkit_glue::PasswordForm; |
// LoginHandlerWin |
// 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 LoginHandlerWin : public LoginHandler, |
public ConstrainedDialogDelegate { |
public: |
- LoginHandlerWin(net::AuthChallengeInfo* auth_info, URLRequest* request) |
+ LoginHandlerWin(net::AuthChallengeInfo* auth_info, net::URLRequest* request) |
: LoginHandler(auth_info, request) { |
} |
@@ -142,6 +142,6 @@ class LoginHandlerWin : public LoginHandler, |
// static |
LoginHandler* LoginHandler::Create(net::AuthChallengeInfo* auth_info, |
- URLRequest* request) { |
+ net::URLRequest* request) { |
return new LoginHandlerWin(auth_info, request); |
} |