RequestOrResponseBlocking.h 288 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Forward.h>
  8. #include <LibWeb/Forward.h>
  9. namespace Web::Fetch::Infrastructure {
  10. enum class RequestOrResponseBlocking {
  11. Blocked,
  12. Allowed,
  13. };
  14. }