17 lines
248 B
C++
17 lines
248 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2026-present, the Ladybird developers.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <Services/RendererSandbox.h>
|
||
|
|
|
||
|
|
namespace RendererSandbox {
|
||
|
|
|
||
|
|
ErrorOr<void> apply_sandbox(Optional<StringView>)
|
||
|
|
{
|
||
|
|
return {};
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|