| 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 // A client specific QuicSession subclass. This class owns the underlying | 5 // A client specific QuicSession subclass. This class owns the underlying |
| 6 // QuicConnection and QuicConnectionHelper objects. The connection stores | 6 // QuicConnection and QuicConnectionHelper objects. The connection stores |
| 7 // a non-owning pointer to the helper so this session needs to ensure that | 7 // a non-owning pointer to the helper so this session needs to ensure that |
| 8 // the helper outlives the connection. | 8 // the helper outlives the connection. |
| 9 | 9 |
| 10 #ifndef NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_H_ | 10 #ifndef NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_H_ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "net/quic/chromium/quic_chromium_client_stream.h" | 31 #include "net/quic/chromium/quic_chromium_client_stream.h" |
| 32 #include "net/quic/chromium/quic_chromium_packet_reader.h" | 32 #include "net/quic/chromium/quic_chromium_packet_reader.h" |
| 33 #include "net/quic/chromium/quic_chromium_packet_writer.h" | 33 #include "net/quic/chromium/quic_chromium_packet_writer.h" |
| 34 #include "net/quic/chromium/quic_connection_logger.h" | 34 #include "net/quic/chromium/quic_connection_logger.h" |
| 35 #include "net/quic/core/quic_client_session_base.h" | 35 #include "net/quic/core/quic_client_session_base.h" |
| 36 #include "net/quic/core/quic_crypto_client_stream.h" | 36 #include "net/quic/core/quic_crypto_client_stream.h" |
| 37 #include "net/quic/core/quic_packets.h" | 37 #include "net/quic/core/quic_packets.h" |
| 38 #include "net/quic/core/quic_server_id.h" | 38 #include "net/quic/core/quic_server_id.h" |
| 39 #include "net/quic/core/quic_time.h" | 39 #include "net/quic/core/quic_time.h" |
| 40 #include "net/socket/socket_performance_watcher.h" | 40 #include "net/socket/socket_performance_watcher.h" |
| 41 #include "net/spdy/multiplexed_session.h" | 41 #include "net/spdy/chromium/multiplexed_session.h" |
| 42 #include "net/spdy/server_push_delegate.h" | 42 #include "net/spdy/chromium/server_push_delegate.h" |
| 43 | 43 |
| 44 namespace net { | 44 namespace net { |
| 45 | 45 |
| 46 class CertVerifyResult; | 46 class CertVerifyResult; |
| 47 class DatagramClientSocket; | 47 class DatagramClientSocket; |
| 48 class NetLog; | 48 class NetLog; |
| 49 class QuicCryptoClientStreamFactory; | 49 class QuicCryptoClientStreamFactory; |
| 50 class QuicServerInfo; | 50 class QuicServerInfo; |
| 51 class QuicStreamFactory; | 51 class QuicStreamFactory; |
| 52 class SSLInfo; | 52 class SSLInfo; |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 // the current sockets_.size() == the passed in value. | 411 // the current sockets_.size() == the passed in value. |
| 412 bool migration_pending_; // True while migration is underway. | 412 bool migration_pending_; // True while migration is underway. |
| 413 base::WeakPtrFactory<QuicChromiumClientSession> weak_factory_; | 413 base::WeakPtrFactory<QuicChromiumClientSession> weak_factory_; |
| 414 | 414 |
| 415 DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSession); | 415 DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSession); |
| 416 }; | 416 }; |
| 417 | 417 |
| 418 } // namespace net | 418 } // namespace net |
| 419 | 419 |
| 420 #endif // NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_H_ | 420 #endif // NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_H_ |
| OLD | NEW |