#ifndef NET_SSL_SSL_KEY_LOGGER_IMPL_H_
#define NET_SSL_SSL_KEY_LOGGER_IMPL_H_
#include <memory>
#include <string>
#include "base/files/file.h"
#include "base/memory/scoped_refptr.h"
#include "net/base/net_export.h"
#include "net/ssl/ssl_key_logger.h"
namespace base {
class FilePath;
}
namespace net {
class NET_EXPORT SSLKeyLoggerImpl : public SSLKeyLogger {
public:
explicit SSLKeyLoggerImpl(const base::FilePath& path);
explicit SSLKeyLoggerImpl(base::File file);
SSLKeyLoggerImpl(const SSLKeyLoggerImpl&) = delete;
SSLKeyLoggerImpl& operator=(const SSLKeyLoggerImpl&) = delete;
~SSLKeyLoggerImpl() override;
void WriteLine(const std::string& line) override;
private:
class Core;
scoped_refptr<Core> core_;
};
}
#endif