summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/Browser.h
blob: f953d496513ba898d73888d9eacad658eebdfaa6 (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 bool g_single_process;
extern String g_home_url;
extern String g_search_engine;

}