mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
27 lines
710 B
C++
27 lines
710 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/String.h>
|
|
#include <Applications/Browser/IconBag.h>
|
|
|
|
namespace Browser {
|
|
|
|
extern DeprecatedString g_home_url;
|
|
extern DeprecatedString g_new_tab_url;
|
|
extern DeprecatedString g_search_engine;
|
|
extern Vector<String> g_content_filters;
|
|
extern bool g_content_filters_enabled;
|
|
extern Vector<String> g_autoplay_allowlist;
|
|
extern bool g_autoplay_allowed_on_all_websites;
|
|
extern Vector<DeprecatedString> g_proxies;
|
|
extern HashMap<DeprecatedString, size_t> g_proxy_mappings;
|
|
extern IconBag g_icon_bag;
|
|
extern DeprecatedString g_webdriver_content_ipc_path;
|
|
|
|
}
|