#ifndef SERVICES_NETWORK_SSL_CONFIG_TYPE_CONVERTER_H_
#define SERVICES_NETWORK_SSL_CONFIG_TYPE_CONVERTER_H_
#include "net/cert/cert_verifier.h"
#include "net/ssl/ssl_config_service.h"
#include "services/network/public/mojom/ssl_config.mojom.h"
namespace mojo {
int MojoSSLVersionToNetSSLVersion(network::mojom::SSLVersion mojo_version);
net::SSLContextConfig MojoSSLConfigToSSLContextConfig(
const network::mojom::SSLConfigPtr& mojo_config);
net::CertVerifier::Config MojoSSLConfigToCertVerifierConfig(
const network::mojom::SSLConfigPtr& mojo_config);
}
#endif