// Copyright 2023 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_EXTRAS_SHARED_DICTIONARY_SHARED_DICTIONARY_INFO_H_ #define NET_EXTRAS_SHARED_DICTIONARY_SHARED_DICTIONARY_INFO_H_ #include <string> #include "base/component_export.h" #include "base/time/time.h" #include "base/unguessable_token.h" #include "net/base/hash_value.h" #include "url/gurl.h" #include "url/scheme_host_port.h" namespace net { // This class represents a shared dictionary information stored in a SQLite // database for compression dictionary transport feature. class COMPONENT_EXPORT(NET_SHARED_DICTIONARY) SharedDictionaryInfo { … }; } // namespace net #endif // NET_EXTRAS_SHARED_DICTIONARY_SHARED_DICTIONARY_INFO_H_