#ifndef SERVICES_NETWORK_PUBLIC_CPP_SIMPLE_URL_LOADER_H_
#define SERVICES_NETWORK_PUBLIC_CPP_SIMPLE_URL_LOADER_H_
#include <stdint.h>
#include <limits>
#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <vector>
#include "base/component_export.h"
#include "base/feature_list.h"
#include "base/functional/callback_forward.h"
#include "services/network/public/cpp/url_loader_completion_status.h"
#include "services/network/public/mojom/url_response_head.mojom-forward.h"
class GURL;
template <class T>
class scoped_refptr;
namespace base {
class FilePath;
class TickClock;
class TimeDelta;
}
namespace net {
class HttpResponseHeaders;
struct NetworkTrafficAnnotationTag;
struct RedirectInfo;
}
namespace network {
struct ResourceRequest;
namespace mojom {
class URLLoaderFactory;
}
}
network
#endif