#include "chromecast/public/reboot_shlib.h"
#include <stdlib.h>
#define NOTREACHED() abort()
namespace chromecast {
void RebootShlib::Initialize(const std::vector<std::string>& ) {}
void RebootShlib::Finalize() {}
bool RebootShlib::IsSupported() {
return false;
}
bool RebootShlib::IsRebootSourceSupported(
RebootShlib::RebootSource ) {
return false;
}
bool RebootShlib::RebootNow(RebootShlib::RebootSource ) {
return false;
}
bool RebootShlib::IsFdrForNextRebootSupported() {
return false;
}
void RebootShlib::SetFdrForNextReboot() {
NOTREACHED();
}
bool RebootShlib::IsOtaForNextRebootSupported() {
return false;
}
void RebootShlib::SetOtaForNextReboot() {
NOTREACHED();
}
bool RebootShlib::IsClearOtaForNextRebootSupported() {
return false;
}
void RebootShlib::ClearOtaForNextReboot() {
NOTREACHED();
}
}