#ifndef REMOTING_BASE_PROTOBUF_HTTP_STREAM_REQUEST_H_
#define REMOTING_BASE_PROTOBUF_HTTP_STREAM_REQUEST_H_
#include <string_view>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/timer/timer.h"
#include "remoting/base/protobuf_http_request_base.h"
#include "services/network/public/cpp/simple_url_loader_stream_consumer.h"
namespace google {
namespace protobuf {
class MessageLite;
}
}
namespace remoting {
class ProtobufHttpClient;
class ProtobufHttpStatus;
class ProtobufHttpStreamParser;
class ProtobufHttpStreamRequest final
: public ProtobufHttpRequestBase,
public network::SimpleURLLoaderStreamConsumer { … };
}
#endif