#include "net/cert/internal/platform_trust_store.h"
namespace net {
PlatformTrustStore::CertWithTrust::CertWithTrust(
std::vector<uint8_t> cert_bytes,
bssl::CertificateTrust trust)
: … { … }
PlatformTrustStore::CertWithTrust::~CertWithTrust() = default;
PlatformTrustStore::CertWithTrust::CertWithTrust(const CertWithTrust&) =
default;
PlatformTrustStore::CertWithTrust& PlatformTrustStore::CertWithTrust::operator=(
const CertWithTrust& other) = default;
PlatformTrustStore::CertWithTrust::CertWithTrust(CertWithTrust&&) = default;
PlatformTrustStore::CertWithTrust& PlatformTrustStore::CertWithTrust::operator=(
CertWithTrust&& other) = default;
}