Forward.h 478 B

123456789101112131415161718192021222324252627282930313233
  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. }
  21. namespace AK {
  22. template<>
  23. struct Traits<WebView::CookieStorageKey>;
  24. }