#include "chrome/windows_services/service_program/service_delegate.h"
#include "base/notreached.h"
uint16_t ServiceDelegate::GetLogEventCategory() {
NOTREACHED();
}
uint32_t ServiceDelegate::GetLogEventMessageId() {
NOTREACHED();
}
base::expected<base::HeapArray<FactoryAndClsid>, HRESULT>
ServiceDelegate::CreateClassFactories() {
NOTREACHED();
return base::unexpected(E_NOTIMPL);
}
bool ServiceDelegate::PreRun() {
return false;
}
HRESULT ServiceDelegate::Run(const base::CommandLine& ) {
NOTREACHED();
return E_NOTIMPL;
}