diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 16:40:10 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 16:40:10 +0000 |
commit | a9bb6f69b32018c245e05a79011114653fe8f5e0 (patch) | |
tree | c4fe6b5db0e508f860c82feb44245bf549d608ff /chrome/browser/login_prompt.cc | |
parent | f23423a1245dffc2a368708fafd2867d2cf3e0f8 (diff) | |
download | chromium_src-a9bb6f69b32018c245e05a79011114653fe8f5e0.zip chromium_src-a9bb6f69b32018c245e05a79011114653fe8f5e0.tar.gz chromium_src-a9bb6f69b32018c245e05a79011114653fe8f5e0.tar.bz2 |
Move some more classes from net/base into the net:: namespace.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/login_prompt.cc')
-rw-r--r-- | chrome/browser/login_prompt.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/login_prompt.cc b/chrome/browser/login_prompt.cc index ec10fb9..650c1cf 100644 --- a/chrome/browser/login_prompt.cc +++ b/chrome/browser/login_prompt.cc @@ -323,7 +323,7 @@ class LoginHandlerImpl : public LoginHandler, // which then routes it to the URLRequest on the I/O thread. class LoginDialogTask : public Task { public: - LoginDialogTask(AuthChallengeInfo* auth_info, LoginHandlerImpl* handler) + LoginDialogTask(net::AuthChallengeInfo* auth_info, LoginHandlerImpl* handler) : auth_info_(auth_info), handler_(handler) { } virtual ~LoginDialogTask() { @@ -380,15 +380,15 @@ class LoginDialogTask : public Task { // TODO(timsteele): Shouldn't depend on HttpKey since a change to the // format would result in not being able to retrieve existing logins // for a site. Refactor HttpKey behavior to be more reusable. - dialog_form.signon_realm = AuthCache::HttpKey(dialog_form.origin, - *auth_info_); + dialog_form.signon_realm = + net::AuthCache::HttpKey(dialog_form.origin, *auth_info_); password_manager_input->push_back(dialog_form); // Set the password form for the handler (by copy). handler_->set_password_form(dialog_form); } // Info about who/where/what is asking for authentication. - scoped_refptr<AuthChallengeInfo> auth_info_; + scoped_refptr<net::AuthChallengeInfo> auth_info_; // Where to send the authentication when obtained. // This is owned by the ResourceDispatcherHost that invoked us. @@ -400,7 +400,7 @@ class LoginDialogTask : public Task { // ---------------------------------------------------------------------------- // Public API -LoginHandler* CreateLoginPrompt(AuthChallengeInfo* auth_info, +LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info, URLRequest* request, MessageLoop* ui_loop) { LoginHandlerImpl* handler = new LoginHandlerImpl(request, ui_loop); |