- add sources.
[platform/framework/web/crosswalk.git] / src / net / quic / test_tools / mock_crypto_client_stream_factory.cc
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
3 // found in the LICENSE file.
4
5 #include "net/quic/test_tools/mock_crypto_client_stream_factory.h"
6
7 #include "base/lazy_instance.h"
8 #include "net/quic/quic_crypto_client_stream.h"
9
10 using std::string;
11
12 namespace net {
13
14 MockCryptoClientStreamFactory::MockCryptoClientStreamFactory()
15     : handshake_mode_(MockCryptoClientStream::CONFIRM_HANDSHAKE),
16       last_stream_(NULL) {
17 }
18
19 QuicCryptoClientStream*
20 MockCryptoClientStreamFactory::CreateQuicCryptoClientStream(
21     const string& server_hostname,
22     QuicSession* session,
23     QuicCryptoClientConfig* crypto_config) {
24   last_stream_ = new MockCryptoClientStream(server_hostname, session,
25                                             crypto_config, handshake_mode_);
26   return last_stream_;
27 }
28
29 }  // namespace net