| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_ | 5 #ifndef NET_QUIC_CHROMIUM_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_ |
| 6 #define NET_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_ | 6 #define NET_QUIC_CHROMIUM_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
| 12 #include "net/quic/core/quic_server_id.h" | 12 #include "net/quic/core/quic_server_id.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| 16 class ProofVerifyContext; | 16 class ProofVerifyContext; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 const QuicServerId& server_id, | 28 const QuicServerId& server_id, |
| 29 QuicChromiumClientSession* session, | 29 QuicChromiumClientSession* session, |
| 30 std::unique_ptr<ProofVerifyContext> proof_verify_context, | 30 std::unique_ptr<ProofVerifyContext> proof_verify_context, |
| 31 QuicCryptoClientConfig* crypto_config) = 0; | 31 QuicCryptoClientConfig* crypto_config) = 0; |
| 32 | 32 |
| 33 static QuicCryptoClientStreamFactory* GetDefaultFactory(); | 33 static QuicCryptoClientStreamFactory* GetDefaultFactory(); |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 } // namespace net | 36 } // namespace net |
| 37 | 37 |
| 38 #endif // NET_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_ | 38 #endif // NET_QUIC_CHROMIUM_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_ |
| OLD | NEW |