/* * Copyright (c) 2023, Bastiaan van der Plaat * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web { static String s_chrome_process_command_line {}; static String s_chrome_process_executable_path {}; void set_chrome_process_command_line(StringView command_line); void set_chrome_process_executable_path(StringView executable_path); ErrorOr load_error_page(URL::URL const&); ErrorOr load_file_directory_page(URL::URL const&); ErrorOr load_about_version_page(); }