#ifndef CHROME_ENTERPRISE_COMPANION_FLAGS_H_
#define CHROME_ENTERPRISE_COMPANION_FLAGS_H_
#include "build/build_config.h"
namespace enterprise_companion {
inline constexpr char kCrashHandlerSwitch[] = "crash-handler";
inline constexpr char kCrashMeSwitch[] = "crash-me";
inline constexpr char kShutdownSwitch[] = "shutdown";
inline constexpr char kFetchPoliciesSwitch[] = "fetch-policies";
inline constexpr char kInstallSwitch[] = "install";
inline constexpr char kUninstallSwitch[] = "uninstall";
#if BUILDFLAG(IS_MAC)
inline constexpr char kNetWorkerSwitch[] = "net-worker";
#endif
inline constexpr char kEnableUsageStatsSwitch[] = "enable-usage-stats";
inline constexpr char kCohortIdSwitch[] = "cohort-id";
inline constexpr char kLoggingModuleSwitch[] = "vmodule";
inline constexpr char kLoggingModuleSwitchValue[] =
"*/chrome/enterprise_companion/*=2,*/components/*=2";
}
#endif