diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-22 20:41:06 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-22 20:41:06 +0000 |
commit | 35eea2e6ac7a392b22efe089c7c2675be4142237 (patch) | |
tree | 1a2669f40d76dfc1c6a6368b42f4e3aa327bb79e | |
parent | 9775eb1e54557b55e5d49c305a41d64fd5c32e6d (diff) | |
download | chromium_src-35eea2e6ac7a392b22efe089c7c2675be4142237.zip chromium_src-35eea2e6ac7a392b22efe089c7c2675be4142237.tar.gz chromium_src-35eea2e6ac7a392b22efe089c7c2675be4142237.tar.bz2 |
Because we use scoped_refptr<> to the HttpResponseInfo
and SSLCertRequestInfo, simply declaring the forward class
definition is not enough to include this header. This header
is really dependent on those two class definitions.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/216032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26854 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/http/http_response_info.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h index 62ac2f4..ef6343b 100644 --- a/net/http/http_response_info.h +++ b/net/http/http_response_info.h @@ -7,14 +7,13 @@ #include "base/time.h" #include "net/base/auth.h" +#include "net/base/ssl_cert_request_info.h" #include "net/base/ssl_info.h" +#include "net/http/http_response_headers.h" #include "net/http/http_vary_data.h" namespace net { -class HttpResponseHeaders; -class SSLCertRequestInfo; - class HttpResponseInfo { public: HttpResponseInfo(); |