// Copyright 2020 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_DNS_PUBLIC_DNS_OVER_HTTPS_SERVER_CONFIG_H_ #define NET_DNS_PUBLIC_DNS_OVER_HTTPS_SERVER_CONFIG_H_ #include <optional> #include <string> #include <string_view> #include "base/values.h" #include "net/base/ip_address.h" #include "net/base/net_export.h" namespace net { // Simple representation of a DoH server for use in configurations. class NET_EXPORT DnsOverHttpsServerConfig { … }; } // namespace net #endif // NET_DNS_PUBLIC_DNS_OVER_HTTPS_SERVER_CONFIG_H_