Forward.h 490 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 History;
  12. class InspectorClient;
  13. class OutOfProcessWebView;
  14. class ProcessManager;
  15. class ViewImplementation;
  16. class WebContentClient;
  17. struct Attribute;
  18. struct CookieStorageKey;
  19. struct SearchEngine;
  20. struct SocketPair;
  21. }
  22. namespace AK {
  23. template<>
  24. struct Traits<WebView::CookieStorageKey>;
  25. }