#include "components/safe_browsing/content/common/file_type_policies_policy_util.h"
#include "base/strings/string_util.h"
#include "components/policy/core/browser/url_blocklist_manager.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/content/common/file_type_policies_prefs.h"
#include "components/url_matcher/url_matcher.h"
#include "components/url_matcher/url_util.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace safe_browsing {
namespace {
constexpr char kFileExtensionNameKey[] = …;
constexpr char kDomainListKey[] = …;
}
bool IsInNotDangerousOverrideList(const std::string& extension,
const GURL& url,
const PrefService* prefs) { … }
}