1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:57:44 +00:00

Ladybird: Hook up the CookieJar again after WebContent introduction

This commit is contained in:
Andreas Kling 2022-10-11 10:53:28 +02:00 committed by Andrew Kaster
parent 775332e179
commit 71dadabfaa
2 changed files with 12 additions and 1 deletions

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "CookieJar.h"
#include "Tab.h"
#include <AK/NonnullOwnPtrVector.h>
#include <LibCore/Forward.h>
@ -45,4 +46,6 @@ private:
QTabWidget* m_tabs_container { nullptr };
NonnullOwnPtrVector<Tab> m_tabs;
Tab* m_current_tab { nullptr };
Browser::CookieJar m_cookie_jar;
};