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

Ladybird+LibWebView: Move CookieJar, Database, and History to LibWebView

These classes are used as-is in all chromes. Move them to LibWebView so
that non-Serenity chromes don't have to awkwardly reach into its headers
and sources.
This commit is contained in:
Timothy Flynn 2023-08-31 07:07:07 -04:00 committed by Andreas Kling
parent 7d313ff83d
commit 5c5a00dd3a
28 changed files with 76 additions and 107 deletions

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Browser/History.h>
#include <LibWebView/History.h>
#import <Application/ApplicationDelegate.h>
#import <UI/LadybirdWebView.h>
@ -34,7 +34,7 @@ enum class IsHistoryNavigation {
{
DeprecatedString m_title;
Browser::History m_history;
WebView::History m_history;
IsHistoryNavigation m_is_history_navigation;
}