chromium/services/network/shared_dictionary/shared_dictionary_writer.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_H_
#define SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_WRITER_H_

#include "base/component_export.h"
#include "base/memory/ref_counted.h"

namespace network {

// SharedDictionaryWriter is used to write a dictionary. After Finish() is
// called the dictionary is stored to the storage.
class COMPONENT_EXPORT(NETWORK_SERVICE) SharedDictionaryWriter
    : public base::RefCounted<SharedDictionaryWriter> {};

}  // namespace network

#endif  // SERVICES_NETWORK_SHARED_DICTIONARY_SHARED_DICTIONARY_WRITER_H_