diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 21:02:35 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 21:02:35 +0000 |
commit | 277d5942c22b06bbcc6288a8d60721d5841be014 (patch) | |
tree | 75d980a9e5317b52ef6061c5576efd3607f62163 /net/http/http_stream_parser.h | |
parent | 1430561ede1be63543f07085b59ec17112b9b80b (diff) | |
download | chromium_src-277d5942c22b06bbcc6288a8d60721d5841be014.zip chromium_src-277d5942c22b06bbcc6288a8d60721d5841be014.tar.gz chromium_src-277d5942c22b06bbcc6288a8d60721d5841be014.tar.bz2 |
FBTF: Start cleaning up net/
url_request.h and http_response_info.h are some of the most included headers from net/
in chrome. Do what forward declaration we can in those headers.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3150003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55780 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_parser.h')
-rw-r--r-- | net/http/http_stream_parser.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h index a658ce7..feb34e2 100644 --- a/net/http/http_stream_parser.h +++ b/net/http/http_stream_parser.h @@ -9,17 +9,18 @@ #include <string> #include "base/basictypes.h" -#include "net/base/io_buffer.h" #include "net/base/net_log.h" #include "net/base/upload_data_stream.h" #include "net/http/http_chunked_decoder.h" -#include "net/http/http_response_info.h" -#include "net/socket/client_socket_handle.h" namespace net { class ClientSocketHandle; +class DrainableIOBuffer; +class GrowableIOBuffer; struct HttpRequestInfo; +class HttpResponseInfo; +class IOBuffer; class HttpStreamParser { public: |