Add IS_TIZEN_DA to fix build break in standard build.
[platform/framework/web/chromium-efl.git] / net / quic / test_quic_crypto_client_config_handle.cc
1 // Copyright 2019 The Chromium Authors
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_quic_crypto_client_config_handle.h"
6
7 namespace net {
8
9 TestQuicCryptoClientConfigHandle::TestQuicCryptoClientConfigHandle(
10     quic::QuicCryptoClientConfig* crypto_config)
11     : crypto_config_(crypto_config) {}
12
13 TestQuicCryptoClientConfigHandle::~TestQuicCryptoClientConfigHandle() = default;
14
15 quic::QuicCryptoClientConfig* TestQuicCryptoClientConfigHandle::GetConfig()
16     const {
17   return crypto_config_;
18 }
19
20 }  // namespace net