// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "headless/lib/renderer/allowlist.h" #include "base/check.h" #include "base/strings/string_split.h" namespace headless { Allowlist::Allowlist(std::string list, bool default_allow) : … { … } Allowlist::~Allowlist() = default; bool Allowlist::IsAllowed(std::string_view str) const { … } } // namespace headless