mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
LibWeb: Enable EXPLICIT_SYMBOL_EXPORT
This commit is contained in:
parent
94a3a7d9a1
commit
3df8e00d91
Notes:
github-actions[bot]
2025-08-23 22:05:58 +00:00
Author: https://github.com/ayeteadoe
Commit: 3df8e00d91
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5229
Reviewed-by: https://github.com/ADKaster ✅
256 changed files with 728 additions and 512 deletions
|
|
@ -11,6 +11,7 @@
|
|||
#include <LibWeb/ARIA/AriaData.h>
|
||||
#include <LibWeb/ARIA/AttributeNames.h>
|
||||
#include <LibWeb/ARIA/Roles.h>
|
||||
#include <LibWeb/Export.h>
|
||||
#include <LibWeb/WebIDL/ExceptionOr.h>
|
||||
|
||||
namespace Web::ARIA {
|
||||
|
|
@ -27,7 +28,7 @@ namespace Web::ARIA {
|
|||
__ENUMERATE_ARIA_ATTRIBUTE(aria_labelled_by_elements, aria_labelled_by) \
|
||||
__ENUMERATE_ARIA_ATTRIBUTE(aria_owns_elements, aria_owns)
|
||||
|
||||
class ARIAMixin {
|
||||
class WEB_API ARIAMixin {
|
||||
public:
|
||||
virtual ~ARIAMixin();
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <AK/Forward.h>
|
||||
#include <AK/StringView.h>
|
||||
#include <LibWeb/Export.h>
|
||||
|
||||
namespace Web::ARIA {
|
||||
|
||||
|
|
@ -121,7 +122,7 @@ enum class Role {
|
|||
#undef __ENUMERATE_ARIA_ROLE
|
||||
};
|
||||
|
||||
StringView role_name(Role);
|
||||
WEB_API StringView role_name(Role);
|
||||
Optional<Role> role_from_string(StringView role_name);
|
||||
|
||||
bool is_abstract_role(Role);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue