| 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_SOCKET_STREAM_SOCKET_STREAM_H_ | 5 #ifndef NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
| 6 #define NET_SOCKET_STREAM_SOCKET_STREAM_H_ | 6 #define NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 | 319 |
| 320 GURL url_; | 320 GURL url_; |
| 321 int max_pending_send_allowed_; | 321 int max_pending_send_allowed_; |
| 322 scoped_refptr<URLRequestContext> context_; | 322 scoped_refptr<URLRequestContext> context_; |
| 323 | 323 |
| 324 UserDataMap user_data_; | 324 UserDataMap user_data_; |
| 325 | 325 |
| 326 State next_state_; | 326 State next_state_; |
| 327 HostResolver* host_resolver_; | 327 HostResolver* host_resolver_; |
| 328 CertVerifier* cert_verifier_; | 328 CertVerifier* cert_verifier_; |
| 329 OriginBoundCertService* origin_bound_cert_service_; | 329 ServerBoundCertService* server_bound_cert_service_; |
| 330 HttpAuthHandlerFactory* http_auth_handler_factory_; | 330 HttpAuthHandlerFactory* http_auth_handler_factory_; |
| 331 ClientSocketFactory* factory_; | 331 ClientSocketFactory* factory_; |
| 332 | 332 |
| 333 ProxyMode proxy_mode_; | 333 ProxyMode proxy_mode_; |
| 334 | 334 |
| 335 GURL proxy_url_; | 335 GURL proxy_url_; |
| 336 ProxyService::PacRequest* pac_request_; | 336 ProxyService::PacRequest* pac_request_; |
| 337 ProxyInfo proxy_info_; | 337 ProxyInfo proxy_info_; |
| 338 | 338 |
| 339 HttpAuthCache auth_cache_; | 339 HttpAuthCache auth_cache_; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 bool server_closed_; | 375 bool server_closed_; |
| 376 | 376 |
| 377 scoped_ptr<SocketStreamMetrics> metrics_; | 377 scoped_ptr<SocketStreamMetrics> metrics_; |
| 378 | 378 |
| 379 DISALLOW_COPY_AND_ASSIGN(SocketStream); | 379 DISALLOW_COPY_AND_ASSIGN(SocketStream); |
| 380 }; | 380 }; |
| 381 | 381 |
| 382 } // namespace net | 382 } // namespace net |
| 383 | 383 |
| 384 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ | 384 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
| OLD | NEW |