// 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 "content/browser/origin_trials/origin_trials_utils.h" #include <string_view> #include "net/http/http_response_headers.h" namespace content { namespace { std::vector<std::string> GetHeaderValues( std::string_view header_name, const net::HttpResponseHeaders* headers) { … } } // namespace std::vector<std::string> GetOriginTrialHeaderValues( const net::HttpResponseHeaders* headers) { … } std::vector<std::string> GetCriticalOriginTrialHeaderValues( const net::HttpResponseHeaders* headers) { … } } // namespace content