summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/Browser.h
blob: fade37a00b1f6d03aa3ad77c8014e99ac5c6fbc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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;

}