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 /net/url_request/url_request_job.h | |
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 'net/url_request/url_request_job.h')
-rw-r--r-- | net/url_request/url_request_job.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/url_request/url_request_job.h b/net/url_request/url_request_job.h index 60a870d..9cb4a18 100644 --- a/net/url_request/url_request_job.h +++ b/net/url_request/url_request_job.h @@ -168,7 +168,7 @@ class URLRequestJob : public base::RefCounted<URLRequestJob> { // Fills the authentication info with the server's response. virtual void GetAuthChallengeInfo( - scoped_refptr<AuthChallengeInfo>* auth_info) { + scoped_refptr<net::AuthChallengeInfo>* auth_info) { // This will only be called if NeedsAuth() returns true, in which // case the derived class should implement this! NOTREACHED(); @@ -177,8 +177,8 @@ class URLRequestJob : public base::RefCounted<URLRequestJob> { // Returns cached auth data for the auth challenge. Returns NULL if there // is no auth cache or if the auth cache doesn't have the auth data for // the auth challenge. - virtual void GetCachedAuthData(const AuthChallengeInfo& auth_info, - scoped_refptr<AuthData>* auth_data) { + virtual void GetCachedAuthData(const net::AuthChallengeInfo& auth_info, + scoped_refptr<net::AuthData>* auth_data) { *auth_data = NULL; } |