OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/http/http_pipelined_connection_impl.h" | 5 #include "net/http/http_pipelined_connection_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
11 #include "base/values.h" | 11 #include "base/values.h" |
12 #include "net/base/io_buffer.h" | 12 #include "net/base/io_buffer.h" |
13 #include "net/http/http_pipelined_stream.h" | 13 #include "net/http/http_pipelined_stream.h" |
14 #include "net/http/http_request_info.h" | 14 #include "net/http/http_request_info.h" |
15 #include "net/http/http_response_body_drainer.h" | 15 #include "net/http/http_response_body_drainer.h" |
16 #include "net/http/http_response_headers.h" | 16 #include "net/http/http_response_headers.h" |
17 #include "net/http/http_stream_parser.h" | 17 #include "net/http/http_stream_parser.h" |
18 #include "net/http/http_version.h" | 18 #include "net/http/http_version.h" |
19 #include "net/socket/client_socket_handle.h" | 19 #include "net/socket/client_socket_handle.h" |
(...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 } | 829 } |
830 | 830 |
831 HttpPipelinedConnectionImpl::StreamInfo::StreamInfo() | 831 HttpPipelinedConnectionImpl::StreamInfo::StreamInfo() |
832 : state(STREAM_CREATED) { | 832 : state(STREAM_CREATED) { |
833 } | 833 } |
834 | 834 |
835 HttpPipelinedConnectionImpl::StreamInfo::~StreamInfo() { | 835 HttpPipelinedConnectionImpl::StreamInfo::~StreamInfo() { |
836 } | 836 } |
837 | 837 |
838 } // namespace net | 838 } // namespace net |
OLD | NEW |