// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/network/public/cpp/content_language_parser.h" #include <optional> #include <utility> #include <vector> #include "base/strings/string_util.h" #include "net/http/structured_headers.h" namespace network { std::optional<std::vector<std::string>> ParseContentLanguages( const std::string& header) { … } } // namespace network