mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 22:14:59 +00:00

https://w3c.github.io/clipboard-apis/ This implements enough for navigator.clipboard.writeText(String).
44 lines
789 B
C++
44 lines
789 B
C++
/*
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
|
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Array.h>
|
|
#include <AK/StringView.h>
|
|
|
|
namespace IDL {
|
|
|
|
static constexpr Array libweb_interface_namespaces = {
|
|
"CSS"sv,
|
|
"Clipboard"sv,
|
|
"Crypto"sv,
|
|
"DOM"sv,
|
|
"DOMParsing"sv,
|
|
"Encoding"sv,
|
|
"Fetch"sv,
|
|
"FileAPI"sv,
|
|
"Geometry"sv,
|
|
"HTML"sv,
|
|
"HighResolutionTime"sv,
|
|
"Internals"sv,
|
|
"IntersectionObserver"sv,
|
|
"MathML"sv,
|
|
"NavigationTiming"sv,
|
|
"RequestIdleCallback"sv,
|
|
"ResizeObserver"sv,
|
|
"SVG"sv,
|
|
"Selection"sv,
|
|
"UIEvents"sv,
|
|
"URL"sv,
|
|
"WebAudio"sv,
|
|
"WebGL"sv,
|
|
"WebIDL"sv,
|
|
"WebSockets"sv,
|
|
"XHR"sv,
|
|
};
|
|
|
|
}
|