#include "net/socket/stream_socket.h"
#include <string_view>
#include "base/notreached.h"
namespace net {
void StreamSocket::SetBeforeConnectCallback(
const BeforeConnectCallback& before_connect_callback) {
NOTREACHED();
}
std::optional<std::string_view> StreamSocket::GetPeerApplicationSettings()
const {
return std::nullopt;
}
void StreamSocket::GetSSLCertRequestInfo(
SSLCertRequestInfo* cert_request_info) const {
NOTREACHED();
}
int StreamSocket::ConfirmHandshake(CompletionOnceCallback callback) {
return OK;
}
}