// 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. #ifndef NET_HTTP_HTTP_NO_VARY_SEARCH_DATA_H_ #define NET_HTTP_HTTP_NO_VARY_SEARCH_DATA_H_ #include <string> #include "base/containers/flat_set.h" #include "base/types/expected.h" #include "net/base/net_export.h" #include "net/http/structured_headers.h" #include "url/gurl.h" namespace net { class HttpResponseHeaders; // Data extracted from No-Vary-Search header. // // This data can be used to determine which parts of the URL search // can be ignored when comparing a request with a cached response. class NET_EXPORT_PRIVATE HttpNoVarySearchData { … }; } // namespace net #endif // NET_HTTP_HTTP_NO_VARY_SEARCH_DATA_H_