chromium/components/custom_handlers/protocol_handler_throttle.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_CUSTOM_HANDLERS_PROTOCOL_HANDLER_THROTTLE_H_
#define COMPONENTS_CUSTOM_HANDLERS_PROTOCOL_HANDLER_THROTTLE_H_

#include "base/memory/ref_counted.h"
#include "url/gurl.h"

#include "third_party/blink/public/common/loader/url_loader_throttle.h"

namespace custom_handlers {

class ProtocolHandlerRegistry;

class ProtocolHandlerThrottle : public blink::URLLoaderThrottle {};

}  // namespace custom_handlers

#endif  // COMPONENTS_CUSTOM_HANDLERS_PROTOCOL_HANDLER_THROTTLE_H_