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_QUIC_CHROMIUM_CLIENT_SESSION_H_ | 10 #ifndef NET_QUIC_QUIC_CHROMIUM_CLIENT_SESSION_H_ |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "base/macros.h" | 22 #include "base/macros.h" |
23 #include "base/time/time.h" | 23 #include "base/time/time.h" |
24 #include "net/base/completion_callback.h" | 24 #include "net/base/completion_callback.h" |
25 #include "net/base/net_error_details.h" | 25 #include "net/base/net_error_details.h" |
26 #include "net/cert/ct_verify_result.h" | 26 #include "net/cert/ct_verify_result.h" |
27 #include "net/proxy/proxy_server.h" | 27 #include "net/proxy/proxy_server.h" |
28 #include "net/quic/chromium/quic_chromium_client_stream.h" | 28 #include "net/quic/chromium/quic_chromium_client_stream.h" |
29 #include "net/quic/chromium/quic_chromium_packet_reader.h" | 29 #include "net/quic/chromium/quic_chromium_packet_reader.h" |
30 #include "net/quic/chromium/quic_chromium_packet_writer.h" | 30 #include "net/quic/chromium/quic_chromium_packet_writer.h" |
31 #include "net/quic/chromium/quic_connection_logger.h" | 31 #include "net/quic/chromium/quic_connection_logger.h" |
32 #include "net/quic/quic_client_session_base.h" | 32 #include "net/quic/core/quic_client_session_base.h" |
33 #include "net/quic/quic_crypto_client_stream.h" | 33 #include "net/quic/core/quic_crypto_client_stream.h" |
34 #include "net/quic/quic_protocol.h" | 34 #include "net/quic/core/quic_protocol.h" |
35 #include "net/quic/quic_server_id.h" | 35 #include "net/quic/core/quic_server_id.h" |
36 #include "net/quic/quic_time.h" | 36 #include "net/quic/core/quic_time.h" |
37 #include "net/socket/socket_performance_watcher.h" | 37 #include "net/socket/socket_performance_watcher.h" |
38 | 38 |
39 namespace net { | 39 namespace net { |
40 | 40 |
41 class CertVerifyResult; | 41 class CertVerifyResult; |
42 class DatagramClientSocket; | 42 class DatagramClientSocket; |
43 class QuicCryptoClientStreamFactory; | 43 class QuicCryptoClientStreamFactory; |
44 class QuicServerInfo; | 44 class QuicServerInfo; |
45 class QuicStreamFactory; | 45 class QuicStreamFactory; |
46 class SSLInfo; | 46 class SSLInfo; |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 int error_code_from_rewrite_; | 370 int error_code_from_rewrite_; |
371 bool use_error_code_from_rewrite_; | 371 bool use_error_code_from_rewrite_; |
372 base::WeakPtrFactory<QuicChromiumClientSession> weak_factory_; | 372 base::WeakPtrFactory<QuicChromiumClientSession> weak_factory_; |
373 | 373 |
374 DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSession); | 374 DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSession); |
375 }; | 375 }; |
376 | 376 |
377 } // namespace net | 377 } // namespace net |
378 | 378 |
379 #endif // NET_QUIC_QUIC_CHROMIUM_CLIENT_SESSION_H_ | 379 #endif // NET_QUIC_QUIC_CHROMIUM_CLIENT_SESSION_H_ |
OLD | NEW |