ssl_config_service_defaults.cc 609 B

123456789101112131415161718192021
  1. // Copyright (c) 2012 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/ssl/ssl_config_service_defaults.h"
  5. namespace net {
  6. SSLConfigServiceDefaults::SSLConfigServiceDefaults() = default;
  7. SSLConfigServiceDefaults::~SSLConfigServiceDefaults() = default;
  8. SSLContextConfig SSLConfigServiceDefaults::GetSSLContextConfig() {
  9. return default_config_;
  10. }
  11. bool SSLConfigServiceDefaults::CanShareConnectionWithClientCerts(
  12. const std::string& hostname) const {
  13. return false;
  14. }
  15. } // namespace net