#ifndef ASH_WALLPAPER_WALLPAPER_TIME_OF_DAY_SCHEDULER_H_
#define ASH_WALLPAPER_WALLPAPER_TIME_OF_DAY_SCHEDULER_H_
#include "ash/system/scheduled_feature/scheduled_feature.h"
class PrefRegistrySimple;
namespace ash {
class WallpaperTimeOfDayScheduler : public ScheduledFeature {
public:
WallpaperTimeOfDayScheduler();
WallpaperTimeOfDayScheduler(const WallpaperTimeOfDayScheduler& other) =
delete;
WallpaperTimeOfDayScheduler& operator=(
const WallpaperTimeOfDayScheduler& rhs) = delete;
~WallpaperTimeOfDayScheduler() override = default;
static void RegisterProfilePrefs(PrefRegistrySimple* registry);
private:
const char* GetFeatureName() const override;
};
}
#endif