// 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. #include "net/http/http_stream_pool_handle.h" #include <memory> #include "net/http/http_stream_pool.h" #include "net/http/http_stream_pool_group.h" #include "net/socket/stream_socket.h" namespace net { HttpStreamPoolHandle::HttpStreamPoolHandle(HttpStreamPool::Group* group, std::unique_ptr<StreamSocket> socket, int64_t generation) : … { … } HttpStreamPoolHandle::~HttpStreamPoolHandle() { … } void HttpStreamPoolHandle::Reset() { … } bool HttpStreamPoolHandle::IsPoolStalled() const { … } } // namespace net