#ifndef SERVICES_NETWORK_THROTTLING_THROTTLING_NETWORK_TRANSACTION_FACTORY_H_
#define SERVICES_NETWORK_THROTTLING_THROTTLING_NETWORK_TRANSACTION_FACTORY_H_
#include <memory>
#include "base/component_export.h"
#include "net/base/request_priority.h"
#include "net/http/http_transaction_factory.h"
namespace net {
class HttpCache;
class HttpNetworkSession;
class HttpTransaction;
}
namespace network {
class COMPONENT_EXPORT(NETWORK_SERVICE) ThrottlingNetworkTransactionFactory
: public net::HttpTransactionFactory { … };
}
#endif