| 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_SPDY_SPDY_SESSION_H_ | 5 #ifndef NET_SPDY_SPDY_SESSION_H_ |
| 6 #define NET_SPDY_SPDY_SESSION_H_ | 6 #define NET_SPDY_SPDY_SESSION_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "net/socket/tcp_client_socket_pool.h" | 23 #include "net/socket/tcp_client_socket_pool.h" |
| 24 #include "net/spdy/spdy_framer.h" | 24 #include "net/spdy/spdy_framer.h" |
| 25 #include "net/spdy/spdy_io_buffer.h" | 25 #include "net/spdy/spdy_io_buffer.h" |
| 26 #include "net/spdy/spdy_protocol.h" | 26 #include "net/spdy/spdy_protocol.h" |
| 27 #include "net/spdy/spdy_session_pool.h" | 27 #include "net/spdy/spdy_session_pool.h" |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 | 30 |
| 31 class SpdyStream; | 31 class SpdyStream; |
| 32 class HttpNetworkSession; | 32 class HttpNetworkSession; |
| 33 class HttpRequestInfo; | 33 struct HttpRequestInfo; |
| 34 class HttpResponseInfo; | 34 class HttpResponseInfo; |
| 35 class BoundNetLog; | 35 class BoundNetLog; |
| 36 class SSLInfo; | 36 class SSLInfo; |
| 37 | 37 |
| 38 class SpdySession : public base::RefCounted<SpdySession>, | 38 class SpdySession : public base::RefCounted<SpdySession>, |
| 39 public spdy::SpdyFramerVisitorInterface { | 39 public spdy::SpdyFramerVisitorInterface { |
| 40 public: | 40 public: |
| 41 const HostPortPair& host_port_pair() const { return host_port_pair_; } | 41 const HostPortPair& host_port_pair() const { return host_port_pair_; } |
| 42 | 42 |
| 43 // Connect the Spdy Socket. | 43 // Connect the Spdy Socket. |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 int streams_pushed_count_; | 233 int streams_pushed_count_; |
| 234 int streams_pushed_and_claimed_count_; | 234 int streams_pushed_and_claimed_count_; |
| 235 int streams_abandoned_count_; | 235 int streams_abandoned_count_; |
| 236 | 236 |
| 237 static bool use_ssl_; | 237 static bool use_ssl_; |
| 238 }; | 238 }; |
| 239 | 239 |
| 240 } // namespace net | 240 } // namespace net |
| 241 | 241 |
| 242 #endif // NET_SPDY_SPDY_SESSION_H_ | 242 #endif // NET_SPDY_SPDY_SESSION_H_ |
| OLD | NEW |