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_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_ | 5 #ifndef NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_ |
6 #define NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_ | 6 #define NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "net/quic/quic_crypto_client_stream.h" | 10 #include "net/quic/quic_crypto_client_stream.h" |
11 #include "net/quic/quic_crypto_client_stream_factory.h" | 11 #include "net/quic/quic_crypto_client_stream_factory.h" |
12 #include "net/quic/quic_session.h" | 12 #include "net/quic/quic_session.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 class MockCryptoClientStreamFactory : public QuicCryptoClientStreamFactory { | 16 class MockCryptoClientStreamFactory : public QuicCryptoClientStreamFactory { |
17 public: | 17 public: |
18 virtual ~MockCryptoClientStreamFactory() {} | 18 virtual ~MockCryptoClientStreamFactory() {} |
19 | 19 |
20 virtual QuicCryptoClientStream* CreateQuicCryptoClientStream( | 20 virtual QuicCryptoClientStream* CreateQuicCryptoClientStream( |
21 QuicSession* session, const std::string& server_hostname) OVERRIDE; | 21 const string& server_hostname, |
| 22 const QuicConfig& config, |
| 23 QuicSession* session, |
| 24 QuicCryptoClientConfig* crypto_config) OVERRIDE; |
22 }; | 25 }; |
23 | 26 |
24 } // namespace net | 27 } // namespace net |
25 | 28 |
26 #endif // NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_ | 29 #endif // NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_ |
OLD | NEW |