mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
a79bdd2bd5
We now send the list of content filters over to new WebContent processes after creating an OutOfProcessWebView. :^)
18 lines
262 B
C++
18 lines
262 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
|
|
namespace Browser {
|
|
|
|
extern String g_home_url;
|
|
extern String g_search_engine;
|
|
extern Vector<String> g_content_filters;
|
|
|
|
}
|