#ifndef COMPONENTS_CRONET_NATIVE_URL_REQUEST_H_
#define COMPONENTS_CRONET_NATIVE_URL_REQUEST_H_
#include <memory>
#include <string>
#include <unordered_set>
#include "base/memory/raw_ptr.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "base/thread_annotations.h"
#include "components/cronet/cronet_context.h"
#include "components/cronet/cronet_url_request.h"
#include "components/cronet/native/generated/cronet.idl_impl_interface.h"
namespace net {
enum LoadState;
}
namespace cronet {
class Cronet_EngineImpl;
class Cronet_UploadDataSinkImpl;
class Cronet_UrlRequestImpl : public Cronet_UrlRequest { … };
}
#endif