// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/ssl/test_ssl_config_service.h" namespace net { TestSSLConfigService::TestSSLConfigService(const SSLContextConfig& config) : … { … } TestSSLConfigService::~TestSSLConfigService() = default; SSLContextConfig TestSSLConfigService::GetSSLContextConfig() { … } bool TestSSLConfigService::CanShareConnectionWithClientCerts( std::string_view hostname) const { … } void TestSSLConfigService::UpdateSSLConfigAndNotify( const SSLContextConfig& config) { … } } // namespace net