chromium/services/network/shared_dictionary/shared_dictionary_writer_on_disk.h

// 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 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 net

namespace network {

class SharedDictionaryDiskCache;

// A SharedDictionaryWriter which stores the binary of dictionary as an entry of
// SharedDictionaryDiskCache.
class COMPONENT_EXPORT(NETWORK_SERVICE) SharedDictionaryWriterOnDisk
    : public SharedDictionaryWriter {};

}  // namespace network

#endif  // SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_WRITER_ON_DISK_H_