chromium/services/network/dns_config_change_manager.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef SERVICES_NETWORK_DNS_CONFIG_CHANGE_MANAGER_H_
#define SERVICES_NETWORK_DNS_CONFIG_CHANGE_MANAGER_H_

#include "base/component_export.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote_set.h"
#include "net/base/network_change_notifier.h"
#include "services/network/public/mojom/host_resolver.mojom.h"

namespace network {

class COMPONENT_EXPORT(NETWORK_SERVICE) DnsConfigChangeManager
    : public mojom::DnsConfigChangeManager,
      public net::NetworkChangeNotifier::DNSObserver {};

}  // namespace network

#endif  // SERVICES_NETWORK_DNS_CONFIG_CHANGE_MANAGER_H_