#ifndef COMPONENTS_SAFE_BROWSING_CORE_BROWSER_TAILORED_SECURITY_SERVICE_TAILORED_SECURITY_SERVICE_UTIL_H_
#define COMPONENTS_SAFE_BROWSING_CORE_BROWSER_TAILORED_SECURITY_SERVICE_TAILORED_SECURITY_SERVICE_UTIL_H_
#include "components/safe_browsing/core/browser/tailored_security_service/tailored_security_outcome.h"
enum class TailoredSecurityNotificationResult;
namespace safe_browsing {
extern const char kTailoredSecurityDisabledDialogShown[];
extern const char kTailoredSecurityDisabledDialogOkButtonClicked[];
extern const char kTailoredSecurityDisabledDialogSettingsButtonClicked[];
extern const char kTailoredSecurityDisabledDialogDismissed[];
extern const char kTailoredSecurityEnabledDialogShown[];
extern const char kTailoredSecurityEnabledDialogOkButtonClicked[];
extern const char kTailoredSecurityEnabledDialogSettingsButtonClicked[];
extern const char kTailoredSecurityEnabledDialogDismissed[];
const char* GetUserActionString(TailoredSecurityOutcome outcome, bool enable);
void RecordEnabledNotificationResult(TailoredSecurityNotificationResult result);
}
#endif