| 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 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 HttpStreamFactory* http_stream_factory() { | 176 HttpStreamFactory* http_stream_factory() { |
| 177 return http_stream_factory_.get(); | 177 return http_stream_factory_.get(); |
| 178 } | 178 } |
| 179 HttpStreamFactory* http_stream_factory_for_websocket() { | 179 HttpStreamFactory* http_stream_factory_for_websocket() { |
| 180 return http_stream_factory_for_websocket_.get(); | 180 return http_stream_factory_for_websocket_.get(); |
| 181 } | 181 } |
| 182 NetLog* net_log() { | 182 NetLog* net_log() { |
| 183 return net_log_; | 183 return net_log_; |
| 184 } | 184 } |
| 185 | 185 |
| 186 // Creates a Value summary of the state of the socket pools. The caller is | 186 // Creates a Value summary of the state of the socket pools. |
| 187 // responsible for deleting the returned value. | 187 scoped_ptr<base::Value> SocketPoolInfoToValue() const; |
| 188 base::Value* SocketPoolInfoToValue() const; | |
| 189 | 188 |
| 190 // Creates a Value summary of the state of the SPDY sessions. The caller is | 189 // Creates a Value summary of the state of the SPDY sessions. The caller is |
| 191 // responsible for deleting the returned value. | 190 // responsible for deleting the returned value. |
| 192 base::Value* SpdySessionPoolInfoToValue() const; | 191 base::Value* SpdySessionPoolInfoToValue() const; |
| 193 | 192 |
| 194 // Creates a Value summary of the state of the QUIC sessions and | 193 // Creates a Value summary of the state of the QUIC sessions and |
| 195 // configuration. | 194 // configuration. |
| 196 scoped_ptr<base::Value> QuicInfoToValue() const; | 195 scoped_ptr<base::Value> QuicInfoToValue() const; |
| 197 | 196 |
| 198 void CloseAllConnections(); | 197 void CloseAllConnections(); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 239 |
| 241 NextProtoVector next_protos_; | 240 NextProtoVector next_protos_; |
| 242 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | 241 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; |
| 243 | 242 |
| 244 Params params_; | 243 Params params_; |
| 245 }; | 244 }; |
| 246 | 245 |
| 247 } // namespace net | 246 } // namespace net |
| 248 | 247 |
| 249 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 248 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |