// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gfx/extension_set.h" #include <string_view> #include "base/strings/string_split.h" #include "base/strings/string_util.h" namespace gfx { ExtensionSet MakeExtensionSet(std::string_view extensions_string) { … } bool HasExtension(const ExtensionSet& extension_set, std::string_view extension) { … } std::string MakeExtensionString(const ExtensionSet& extension_set) { … } } // namespace gfx