// 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_ADDRESS_LIST_H_ #define NET_BASE_ADDRESS_LIST_H_ #include <stdint.h> #include <string> #include <tuple> #include <utility> #include <vector> #include "base/compiler_specific.h" #include "base/values.h" #include "net/base/ip_endpoint.h" #include "net/base/net_export.h" struct addrinfo; namespace base { class Value; } namespace net { class IPAddress; class NET_EXPORT AddressList { … }; } // namespace net #endif // NET_BASE_ADDRESS_LIST_H_