Forward.h 497 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2022, The SerenityOS developers
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Traits.h>
  8. namespace WebView {
  9. class CookieJar;
  10. class Database;
  11. class InspectorClient;
  12. class OutOfProcessWebView;
  13. class ProcessManager;
  14. class ViewImplementation;
  15. class WebContentClient;
  16. struct Attribute;
  17. struct CookieStorageKey;
  18. struct ProcessHandle;
  19. struct SearchEngine;
  20. struct SocketPair;
  21. }
  22. namespace AK {
  23. template<>
  24. struct Traits<WebView::CookieStorageKey>;
  25. }