chromium/net/shared_dictionary/shared_dictionary_network_transaction_factory.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 NET_SHARED_DICTIONARY_SHARED_DICTIONARY_NETWORK_TRANSACTION_FACTORY_H_
#define NET_SHARED_DICTIONARY_SHARED_DICTIONARY_NETWORK_TRANSACTION_FACTORY_H_

#include "net/base/net_export.h"
#include "net/http/http_transaction_factory.h"

namespace net {

// A HttpTransactionFactory to create SharedDictionaryNetworkTransactions.
class NET_EXPORT SharedDictionaryNetworkTransactionFactory
    : public HttpTransactionFactory {};

}  // namespace net

#endif  // NET_SHARED_DICTIONARY_SHARED_DICTIONARY_NETWORK_TRANSACTION_FACTORY_H_