#ifndef COMPONENTS_SPEECH_DOWNSTREAM_LOADER_H_
#define COMPONENTS_SPEECH_DOWNSTREAM_LOADER_H_
#include <memory>
#include <string_view>
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/simple_url_loader.h"
#include "services/network/public/cpp/simple_url_loader_stream_consumer.h"
namespace speech {
class DownstreamLoaderClient;
class DownstreamLoader : public network::SimpleURLLoaderStreamConsumer { … };
}
#endif