// Copyright 2020 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/ssl_key_logger.h" #include "base/check.h" #include "base/no_destructor.h" namespace net { // static bool SSLKeyLoggerManager::IsActive() { … } // static void SSLKeyLoggerManager::SetSSLKeyLogger( std::unique_ptr<SSLKeyLogger> logger) { … } // static void SSLKeyLoggerManager::KeyLogCallback(const SSL* /*ssl*/, const char* line) { … } SSLKeyLoggerManager::SSLKeyLoggerManager() = default; // static SSLKeyLoggerManager* SSLKeyLoggerManager::Get() { … } } // namespace net