// Copyright 2016 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_SPDY_MULTIPLEXED_SESSION_H_ #define NET_SPDY_MULTIPLEXED_SESSION_H_ #include <string_view> #include "net/base/ip_endpoint.h" #include "net/base/net_errors.h" #include "net/http/http_stream.h" #include "net/ssl/ssl_info.h" namespace url { class SchemeHostPort; } namespace net { // Base class for SPDY and QUIC sessions. class NET_EXPORT_PRIVATE MultiplexedSession { … }; // A handle to a multiplexed session which will be valid even after the // underlying session is deleted. class NET_EXPORT_PRIVATE MultiplexedSessionHandle { … }; } // namespace net #endif // NET_SPDY_MULTIPLEXED_SESSION_H_