// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_SOCKET_SSL_SOCKET_H_ #define NET_SOCKET_SSL_SOCKET_H_ #include <string_view> #include "net/base/net_export.h" #include "net/socket/stream_socket.h" namespace net { // SSLSocket interface defines method that are common between client // and server SSL sockets. class NET_EXPORT SSLSocket : public StreamSocket { … }; } // namespace net #endif // NET_SOCKET_SSL_SOCKET_H_