// Copyright 2013 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_MDNS_CACHE_H_ #define NET_DNS_MDNS_CACHE_H_ #include <map> #include <memory> #include <string> #include <vector> #include "base/functional/callback.h" #include "base/time/time.h" #include "net/base/net_export.h" namespace net { class RecordParsed; // mDNS Cache // This is a cache of mDNS records. It keeps track of expiration times and is // guaranteed not to return expired records. It also has facilities for timely // record expiration. class NET_EXPORT_PRIVATE MDnsCache { … }; } // namespace net #endif // NET_DNS_MDNS_CACHE_H_