1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:17:45 +00:00

Ladybird/WebView: Move our PageClient to its own file

And rename it to PageClientLadybird while we're at it, it's not
"headless" by any means.
This commit is contained in:
Andreas Kling 2022-09-19 11:06:23 +02:00 committed by Andrew Kaster
parent 97964bc710
commit 4cc82ac638
7 changed files with 414 additions and 290 deletions

13
Ladybird/Utilities.h Normal file
View file

@ -0,0 +1,13 @@
/*
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <QString>
AK::String akstring_from_qstring(QString const&);
QString qstring_from_akstring(AK::String const&);