| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ | 5 #ifndef NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ |
| 6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ | 6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <queue> | 10 #include <queue> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/location.h" | 14 #include "base/location.h" |
| 15 #include "base/memory/linked_ptr.h" | 15 #include "base/memory/linked_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/task.h" | |
| 18 #include "net/base/completion_callback.h" | 17 #include "net/base/completion_callback.h" |
| 19 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 20 #include "net/base/net_log.h" | 19 #include "net/base/net_log.h" |
| 21 #include "net/base/ssl_config_service.h" | 20 #include "net/base/ssl_config_service.h" |
| 22 #include "net/base/upload_data_stream.h" | 21 #include "net/base/upload_data_stream.h" |
| 23 #include "net/http/http_pipelined_connection.h" | 22 #include "net/http/http_pipelined_connection.h" |
| 24 #include "net/http/http_request_info.h" | 23 #include "net/http/http_request_info.h" |
| 25 #include "net/http/http_stream_parser.h" | 24 #include "net/http/http_stream_parser.h" |
| 26 #include "net/proxy/proxy_info.h" | 25 #include "net/proxy/proxy_info.h" |
| 27 | 26 |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 ReadHeadersState read_next_state_; | 309 ReadHeadersState read_next_state_; |
| 311 int active_read_id_; | 310 int active_read_id_; |
| 312 bool read_still_on_call_stack_; | 311 bool read_still_on_call_stack_; |
| 313 | 312 |
| 314 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedConnectionImpl); | 313 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedConnectionImpl); |
| 315 }; | 314 }; |
| 316 | 315 |
| 317 } // namespace net | 316 } // namespace net |
| 318 | 317 |
| 319 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ | 318 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_IMPL_H_ |
| OLD | NEW |