// 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_SECURE_DNS_MODE_H_ #define NET_DNS_PUBLIC_SECURE_DNS_MODE_H_ #include <string_view> #include "base/containers/fixed_flat_map.h" namespace net { // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net // The SecureDnsMode specifies what types of lookups (secure/insecure) should // be performed and in what order when resolving a specific query. The int // values should not be changed as they are logged. enum class SecureDnsMode : int { … }; inline constexpr auto kSecureDnsModes = …; } // namespace net #endif // NET_DNS_PUBLIC_SECURE_DNS_MODE_H_