diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-31 19:40:37 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-31 19:40:37 +0000 |
commit | 8ac1a75acadaa2aae065212cb6255d00c789a184 (patch) | |
tree | 854eaf66ba8ce7e581bd8e6f1fa75f46d22f4bb7 /net/url_request/url_request_context.h | |
parent | 287a019ed5d015185cab41f6c7156dc6c4cbcee7 (diff) | |
download | chromium_src-8ac1a75acadaa2aae065212cb6255d00c789a184.zip chromium_src-8ac1a75acadaa2aae065212cb6255d00c789a184.tar.gz chromium_src-8ac1a75acadaa2aae065212cb6255d00c789a184.tar.bz2 |
Move more net classes into the net namespace. Also remove the net_util namespace in favor of the net namespace.
This is a purely mechanical change. There should be no logic changes.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_context.h')
-rw-r--r-- | net/url_request/url_request_context.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/url_request/url_request_context.h b/net/url_request/url_request_context.h index 63b8f45..e23a6ba 100644 --- a/net/url_request/url_request_context.h +++ b/net/url_request/url_request_context.h @@ -44,7 +44,9 @@ #include "net/base/cookie_policy.h" #include "net/http/http_transaction_factory.h" +namespace net { class CookieMonster; +} // Subclass to provide application-specific context for URLRequest instances. class URLRequestContext : @@ -62,10 +64,10 @@ class URLRequestContext : } // Gets the cookie store for this context. - CookieMonster* cookie_store() { return cookie_store_; } + net::CookieMonster* cookie_store() { return cookie_store_; } // Gets the cookie policy for this context. - CookiePolicy* cookie_policy() { return &cookie_policy_; } + net::CookiePolicy* cookie_policy() { return &cookie_policy_; } // Gets the FTP realm authentication cache for this context. net::AuthCache* ftp_auth_cache() { return &ftp_auth_cache_; } @@ -90,8 +92,8 @@ class URLRequestContext : // The following members are expected to be initialized and owned by // subclasses. net::HttpTransactionFactory* http_transaction_factory_; - CookieMonster* cookie_store_; - CookiePolicy cookie_policy_; + net::CookieMonster* cookie_store_; + net::CookiePolicy cookie_policy_; net::AuthCache ftp_auth_cache_; std::string user_agent_; bool is_off_the_record_; |