#ifndef SERVICES_NETWORK_TLS_CLIENT_SOCKET_H_
#define SERVICES_NETWORK_TLS_CLIENT_SOCKET_H_
#include <memory>
#include "base/component_export.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "net/base/address_family.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "services/network/public/mojom/address_family.mojom.h"
#include "services/network/public/mojom/ip_endpoint.mojom.h"
#include "services/network/public/mojom/tcp_socket.mojom.h"
#include "services/network/public/mojom/tls_socket.mojom.h"
#include "services/network/socket_data_pump.h"
namespace net {
class ClientSocketFactory;
class SSLClientContext;
class SSLClientSocket;
struct SSLConfig;
class StreamSocket;
}
namespace network {
class COMPONENT_EXPORT(NETWORK_SERVICE) TLSClientSocket
: public mojom::TLSClientSocket,
public SocketDataPump::Delegate { … };
}
#endif