| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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 #include "net/quic/core/quic_crypto_client_stream_factory.h" | 5 #include "net/quic/chromium/quic_crypto_client_stream_factory.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "net/quic/chromium/crypto/proof_verifier_chromium.h" | 8 #include "net/quic/chromium/crypto/proof_verifier_chromium.h" |
| 9 #include "net/quic/chromium/quic_chromium_client_session.h" | 9 #include "net/quic/chromium/quic_chromium_client_session.h" |
| 10 #include "net/quic/core/quic_crypto_client_stream.h" | 10 #include "net/quic/core/quic_crypto_client_stream.h" |
| 11 | 11 |
| 12 namespace net { | 12 namespace net { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 } // namespace | 32 } // namespace |
| 33 | 33 |
| 34 // static | 34 // static |
| 35 QuicCryptoClientStreamFactory* | 35 QuicCryptoClientStreamFactory* |
| 36 QuicCryptoClientStreamFactory::GetDefaultFactory() { | 36 QuicCryptoClientStreamFactory::GetDefaultFactory() { |
| 37 return g_default_crypto_stream_factory.Pointer(); | 37 return g_default_crypto_stream_factory.Pointer(); |
| 38 } | 38 } |
| 39 | 39 |
| 40 } // namespace net | 40 } // namespace net |
| OLD | NEW |