Forward.h 452 B

1234567891011121314151617181920212223242526272829303132
  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 ConsoleClient;
  10. class CookieJar;
  11. class Database;
  12. class History;
  13. class InspectorClient;
  14. class OutOfProcessWebView;
  15. class ViewImplementation;
  16. class WebContentClient;
  17. struct CookieStorageKey;
  18. struct SearchEngine;
  19. }
  20. namespace AK {
  21. template<>
  22. struct Traits<WebView::CookieStorageKey>;
  23. }