// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base_string.h" #include #include "base/strings/string_util.h" namespace extensions { bool ContainsStringIgnoreCaseASCII(const std::set& collection, const std::string& value) { return std::find_if(std::begin(collection), std::end(collection), [&value](const std::string& s) -> bool { return base::EqualsCaseInsensitiveASCII(s, value); }) != std::end(collection); } } // namespace extensions