mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 15:05:07 +00:00

This is to allow running Ladybird without the SQL database for testing. Primarily, this will let us set 'follow-fork-mode' to 'child' within GDB to enter the WebContent process, rather than the SQLServer process. But this is also handy for digging into cookie storage issues.
25 lines
306 B
C++
25 lines
306 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Traits.h>
|
|
|
|
namespace Browser {
|
|
|
|
class CookieJar;
|
|
class Database;
|
|
|
|
struct CookieStorageKey;
|
|
|
|
}
|
|
|
|
namespace AK {
|
|
|
|
template<>
|
|
struct Traits<Browser::CookieStorageKey>;
|
|
|
|
}
|