// 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_SHARED_DICTIONARY_SHARED_DICTIONARY_H_ #define NET_SHARED_DICTIONARY_SHARED_DICTIONARY_H_ #include <string> #include "base/functional/callback.h" #include "base/memory/ref_counted.h" #include "net/base/net_export.h" namespace net { class IOBuffer; struct SHA256HashValue; // This class is used to read the binary of the shared dictionary. class NET_EXPORT SharedDictionary : public base::RefCounted<SharedDictionary> { … }; } // namespace net #endif // NET_SHARED_DICTIONARY_SHARED_DICTIONARY_H_