OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 | 263 |
264 typedef std::map<const void*, linked_ptr<UserData> > UserDataMap; | 264 typedef std::map<const void*, linked_ptr<UserData> > UserDataMap; |
265 UserDataMap user_data_; | 265 UserDataMap user_data_; |
266 | 266 |
267 State next_state_; | 267 State next_state_; |
268 scoped_refptr<HostResolver> host_resolver_; | 268 scoped_refptr<HostResolver> host_resolver_; |
269 ClientSocketFactory* factory_; | 269 ClientSocketFactory* factory_; |
270 | 270 |
271 ProxyMode proxy_mode_; | 271 ProxyMode proxy_mode_; |
272 | 272 |
| 273 GURL proxy_url_; |
273 ProxyService::PacRequest* pac_request_; | 274 ProxyService::PacRequest* pac_request_; |
274 ProxyInfo proxy_info_; | 275 ProxyInfo proxy_info_; |
275 | 276 |
276 HttpAuthCache auth_cache_; | 277 HttpAuthCache auth_cache_; |
277 scoped_refptr<HttpAuthHandler> auth_handler_; | 278 scoped_refptr<HttpAuthHandler> auth_handler_; |
278 HttpAuth::Identity auth_identity_; | 279 HttpAuth::Identity auth_identity_; |
279 scoped_refptr<AuthChallengeInfo> auth_info_; | 280 scoped_refptr<AuthChallengeInfo> auth_info_; |
280 | 281 |
281 scoped_refptr<RequestHeaders> tunnel_request_headers_; | 282 scoped_refptr<RequestHeaders> tunnel_request_headers_; |
282 size_t tunnel_request_headers_bytes_sent_; | 283 size_t tunnel_request_headers_bytes_sent_; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 scoped_ptr<SocketStreamMetrics> metrics_; | 318 scoped_ptr<SocketStreamMetrics> metrics_; |
318 | 319 |
319 RequestTracker<SocketStream>::Node request_tracker_node_; | 320 RequestTracker<SocketStream>::Node request_tracker_node_; |
320 | 321 |
321 DISALLOW_COPY_AND_ASSIGN(SocketStream); | 322 DISALLOW_COPY_AND_ASSIGN(SocketStream); |
322 }; | 323 }; |
323 | 324 |
324 } // namespace net | 325 } // namespace net |
325 | 326 |
326 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ | 327 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ |
OLD | NEW |