mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 11:15:07 +00:00

Browser now only supports multi-process mode (Web::OutOfProcessWebView). This is where we want to go, so let's just jump in the cold water. :^)
16 lines
221 B
C++
16 lines
221 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;
|
|
|
|
}
|