// 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_BASE_HOST_PORT_PAIR_H_ #define NET_BASE_HOST_PORT_PAIR_H_ #include <stdint.h> #include <optional> #include <string> #include <string_view> #include <tuple> #include "base/values.h" #include "net/base/net_export.h" class GURL; namespace url { class SchemeHostPort; } // namespace url namespace net { class IPEndPoint; class NET_EXPORT HostPortPair { … }; } // namespace net #endif // NET_BASE_HOST_PORT_PAIR_H_