#ifndef ASH_SYSTEM_NETWORK_WIFI_TOGGLE_NOTIFICATION_CONTROLLER_H_
#define ASH_SYSTEM_NETWORK_WIFI_TOGGLE_NOTIFICATION_CONTROLLER_H_
#include "ash/system/network/network_observer.h"
namespace ash {
class WifiToggleNotificationController : public NetworkObserver {
public:
WifiToggleNotificationController();
WifiToggleNotificationController(const WifiToggleNotificationController&) =
delete;
WifiToggleNotificationController& operator=(
const WifiToggleNotificationController&) = delete;
~WifiToggleNotificationController() override;
void RequestToggleWifi() override;
};
}
#endif