mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
This will be used by the UIs to notify WebContent when fullscreen for content is entered or exited.
19 lines
224 B
C++
19 lines
224 B
C++
/*
|
|
* Copyright (c) 2026-present, the Ladybird developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Web {
|
|
|
|
enum class ViewportIsFullscreen : u8 {
|
|
Yes,
|
|
No,
|
|
};
|
|
|
|
}
|