#ifndef CEF_LIBCEF_FEATURES_RUNTIME_H_
#define CEF_LIBCEF_FEATURES_RUNTIME_H_
#pragma once
#include "cef/libcef/features/features.h"
namespace cef {
#if BUILDFLAG(ENABLE_CEF)
inline bool IsCefBuildEnabled() {
return true;
}
bool IsAlloyRuntimeEnabled();
bool IsChromeRuntimeEnabled();
bool IsCrashReportingEnabled();
#else
inline bool IsCefBuildEnabled() {
return false;
}
inline bool IsAlloyRuntimeEnabled() {
return false;
}
inline bool IsChromeRuntimeEnabled() {
return false;
}
inline bool IsCrashReportingEnabled() {
return false;
}
#endif
}
#endif