test_quic_crypto_client_config_handle.cc 619 B

1234567891011121314151617181920
  1. // Copyright 2019 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. #include "net/quic/test_quic_crypto_client_config_handle.h"
  5. namespace net {
  6. TestQuicCryptoClientConfigHandle::TestQuicCryptoClientConfigHandle(
  7. quic::QuicCryptoClientConfig* crypto_config)
  8. : crypto_config_(crypto_config) {}
  9. TestQuicCryptoClientConfigHandle::~TestQuicCryptoClientConfigHandle() = default;
  10. quic::QuicCryptoClientConfig* TestQuicCryptoClientConfigHandle::GetConfig()
  11. const {
  12. return crypto_config_;
  13. }
  14. } // namespace net