#ifndef COMPONENTS_CAST_RECEIVER_RENDERER_WRAPPING_URL_LOADER_THROTTLE_PROVIDER_H_
#define COMPONENTS_CAST_RECEIVER_RENDERER_WRAPPING_URL_LOADER_THROTTLE_PROVIDER_H_
#include <memory>
#include <string_view>
#include "base/containers/flat_map.h"
#include "base/functional/callback_forward.h"
#include "base/sequence_checker.h"
#include "third_party/blink/public/platform/url_loader_throttle_provider.h"
#include "third_party/blink/public/platform/web_vector.h"
namespace network {
struct ResourceRequest;
}
namespace cast_receiver {
class UrlRewriteRulesProvider;
class WrappingURLLoaderThrottleProvider
: public blink::URLLoaderThrottleProvider { … };
}
#endif