// Copyright 2024 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_STREAM_SOCKET_HANDLE_H_ #define NET_SOCKET_STREAM_SOCKET_HANDLE_H_ #include <stdint.h> #include <memory> #include "net/base/load_timing_info.h" #include "net/base/net_export.h" namespace net { class StreamSocket; class HigherLayeredPool; // A base class for handles that contain a StreamSocket. A subclass may have a // concept of initialization, where a handle needs to be initialized before it // can be used. A handle can be deinitialized by calling Reset(). class NET_EXPORT_PRIVATE StreamSocketHandle { … }; } // namespace net #endif // NET_SOCKET_STREAM_SOCKET_HANDLE_H_