diff options
| author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-06 01:10:00 +0000 |
|---|---|---|
| committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-06 01:10:00 +0000 |
| commit | cb04f5e5c0daa653804170001499efb72dc610e5 (patch) | |
| tree | f87b2e073aaacb155f4ba8fe2cf939383334c76b /chrome/common/net/url_fetcher.h | |
| parent | a26727ffaf49d677a030960d6ec8f14dbbfd98d3 (diff) | |
| download | chromium_src-cb04f5e5c0daa653804170001499efb72dc610e5.zip chromium_src-cb04f5e5c0daa653804170001499efb72dc610e5.tar.gz chromium_src-cb04f5e5c0daa653804170001499efb72dc610e5.tar.bz2 | |
net: Move ResponseCookies into the net namespace.
BUG=81612
TEST=None
R=wtc@chromium.org,willchan@chromium.org
Review URL: http://codereview.chromium.org/6932025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84375 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/net/url_fetcher.h')
| -rw-r--r-- | chrome/common/net/url_fetcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/net/url_fetcher.h b/chrome/common/net/url_fetcher.h index 9c2e3a3..f4fcf77 100644 --- a/chrome/common/net/url_fetcher.h +++ b/chrome/common/net/url_fetcher.h @@ -23,13 +23,13 @@ #include "base/time.h" class GURL; -typedef std::vector<std::string> ResponseCookies; namespace net { class HostPortPair; class HttpResponseHeaders; class URLRequestContextGetter; class URLRequestStatus; +typedef std::vector<std::string> ResponseCookies; } // namespace net // To use this class, create an instance with the desired URL and a pointer to @@ -78,7 +78,7 @@ class URLFetcher { const GURL& url, const net::URLRequestStatus& status, int response_code, - const ResponseCookies& cookies, + const net::ResponseCookies& cookies, const std::string& data) = 0; protected: |
