#ifndef CHROME_ENTERPRISE_COMPANION_GLOBAL_CONSTANTS_H_
#define CHROME_ENTERPRISE_COMPANION_GLOBAL_CONSTANTS_H_
#include <optional>
#include "base/time/time.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_WIN)
#include <string>
#endif
namespace base {
class FilePath;
}
class GURL;
namespace enterprise_companion {
extern const char kCrashUploadUrlKey[];
extern const char kDMEncryptedReportingUrlKey[];
extern const char kDMRealtimeReportingUrlKey[];
extern const char kDMServerUrlKey[];
extern const char kEventLoggingUrlKey[];
extern const char kEventLoggerMinTimeoutSecKey[];
#if BUILDFLAG(IS_WIN)
extern const char kNamedPipeSecurityDescriptorKey[];
#endif
class GlobalConstants { … };
std::optional<base::FilePath> GetOverridesFilePath();
const GlobalConstants* GetGlobalConstants();
}
#endif