#ifndef NET_EXTRAS_SHARED_DICTIONARY_SHARED_DICTIONARY_USAGE_INFO_H_
#define NET_EXTRAS_SHARED_DICTIONARY_SHARED_DICTIONARY_USAGE_INFO_H_
#include "base/component_export.h"
#include "net/shared_dictionary/shared_dictionary_isolation_key.h"
namespace net {
struct COMPONENT_EXPORT(NET_SHARED_DICTIONARY) SharedDictionaryUsageInfo {
friend bool operator==(const SharedDictionaryUsageInfo&,
const SharedDictionaryUsageInfo&) = default;
SharedDictionaryIsolationKey isolation_key;
uint64_t total_size_bytes = 0;
};
}
#endif