#ifndef SERVICES_NETWORK_NETWORK_CHANGE_MANAGER_H_
#define SERVICES_NETWORK_NETWORK_CHANGE_MANAGER_H_
#include <memory>
#include <vector>
#include "base/component_export.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "net/base/network_change_notifier.h"
#include "services/network/public/mojom/network_change_manager.mojom.h"
#if BUILDFLAG(IS_LINUX)
#include "services/network/public/mojom/network_interface_change_listener.mojom.h"
#endif
namespace network {
class COMPONENT_EXPORT(NETWORK_SERVICE) NetworkChangeManager
: public mojom::NetworkChangeManager,
public net::NetworkChangeNotifier::NetworkChangeObserver
#if BUILDFLAG(IS_LINUX)
,
public mojom::NetworkInterfaceChangeListener
#endif
{ … };
}
#endif