#ifndef COMPONENTS_SAFE_BROWSING_CORE_COMMON_WEB_UI_CONSTANTS_H_
#define COMPONENTS_SAFE_BROWSING_CORE_COMMON_WEB_UI_CONSTANTS_H_
#include "url/gurl.h"
namespace safe_browsing {
inline constexpr char kChromeUISafeBrowsingURL[] = …;
inline constexpr char kChromeUISafeBrowsingHost[] = …;
inline constexpr char kChromeUISafeBrowsingMatchBillingUrl[] = …;
inline constexpr char kChromeUISafeBrowsingMatchMalwareUrl[] = …;
inline constexpr char kChromeUISafeBrowsingMatchPhishingUrl[] = …;
inline constexpr char kChromeUISafeBrowsingMatchUnwantedUrl[] = …;
bool IsSafeBrowsingWebUIUrl(const GURL& url);
}
#endif