This factory is only used by the UI. An upcoming commit will make it depend on LibFileSystem. LibWeb currently does not link LibFileSystem, and doing so would push LibWeb in the wrong direction (we should be doing less file IO in LibWeb, not more).
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/Error.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Types.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWebView/Forward.h>
|
|
|
|
namespace WebView {
|
|
|
|
WEBVIEW_API void platform_init(Optional<ByteString> ladybird_binary_path = {});
|
|
WEBVIEW_API void copy_default_config_files(StringView config_path);
|
|
WEBVIEW_API ErrorOr<Vector<ByteString>> get_paths_for_helper_process(StringView process_name);
|
|
|
|
WEBVIEW_API extern ByteString s_ladybird_resource_root;
|
|
WEBVIEW_API Optional<ByteString const&> mach_server_name();
|
|
WEBVIEW_API void set_mach_server_name(ByteString name);
|
|
WEBVIEW_API ByteString mach_server_name_for_process(StringView process_name, pid_t pid);
|
|
|
|
WEBVIEW_API ErrorOr<void> handle_attached_debugger();
|
|
|
|
WEBVIEW_API ErrorOr<Web::HTML::SelectedFile> create_selected_file(ByteString const&);
|
|
|
|
ErrorOr<JsonObject> read_json_file(ByteString const& path);
|
|
ErrorOr<void> write_json_file(ByteString const& path, JsonValue const& value);
|
|
|
|
}
|