// Copyright 2021 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_NSSWITCH_READER_H_ #define NET_DNS_NSSWITCH_READER_H_ #include <string> #include <tuple> #include <vector> #include "base/functional/callback.h" #include "net/base/net_export.h" namespace net { // Reader to read and parse Posix nsswitch.conf files, particularly the "hosts:" // database entry. class NET_EXPORT_PRIVATE NsswitchReader { … }; } // namespace net #endif // NET_DNS_NSSWITCH_READER_H_