diff options
author | Andreas Kling <kling@serenityos.org> | 2022-09-19 11:06:23 +0200 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-25 07:58:58 -0700 |
commit | 4cc82ac6386e207a2cb752d58315b950c7b00358 (patch) | |
tree | b6e6bcca000634d743024fb542ee9d4aa381e704 /Ladybird/Utilities.h | |
parent | 97964bc710771e020cf1fbeb268c257560ce21fb (diff) | |
download | serenity-4cc82ac6386e207a2cb752d58315b950c7b00358.zip |
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.
Diffstat (limited to 'Ladybird/Utilities.h')
-rw-r--r-- | Ladybird/Utilities.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Ladybird/Utilities.h b/Ladybird/Utilities.h new file mode 100644 index 0000000000..dc79b10a16 --- /dev/null +++ b/Ladybird/Utilities.h @@ -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&); |