summaryrefslogtreecommitdiff
path: root/chromium/net/dns/public/mdns_listener_update_type.h
blob: 7976324a8046cbe914705d167a31ac9a81f835ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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_PUBLIC_MDNS_LISTENER_UPDATE_TYPE_H_
#define NET_DNS_PUBLIC_MDNS_LISTENER_UPDATE_TYPE_H_

namespace net {

// Types of update notifications from a HostResolver::MdnsListener
enum class MdnsListenerUpdateType {
  kAdded,
  kChanged,
  kRemoved,
};

}  // namespace net

#endif  // NET_DNS_PUBLIC_MDNS_LISTENER_UPDATE_TYPE_H_