#ifndef SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_WRITER_ON_DISK_H_
#define SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_WRITER_ON_DISK_H_
#include <deque>
#include <set>
#include <string>
#include "base/component_export.h"
#include "base/functional/callback.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "base/unguessable_token.h"
#include "crypto/secure_hash.h"
#include "net/base/hash_value.h"
#include "net/base/io_buffer.h"
#include "net/disk_cache/disk_cache.h"
#include "services/network/shared_dictionary/shared_dictionary_writer.h"
namespace net {
class StringIOBuffer;
}
namespace network {
class SharedDictionaryDiskCache;
class COMPONENT_EXPORT(NETWORK_SERVICE) SharedDictionaryWriterOnDisk
: public SharedDictionaryWriter { … };
}
#endif