LibWebView: Enable EXPLICIT_SYMBOL_EXPORT

This commit is contained in:
ayeteadoe 2025-07-01 20:55:11 -07:00 committed by Andrew Kaster
parent ed93551d59
commit 9c67c4a270
Notes: github-actions[bot] 2025-08-23 22:06:32 +00:00
36 changed files with 104 additions and 94 deletions

View file

@ -9,11 +9,12 @@
#include <AK/HashMap.h>
#include <AK/Optional.h>
#include <AK/StringView.h>
#include <LibWebView/Forward.h>
namespace WebView {
extern OrderedHashMap<StringView, StringView> const user_agents;
WEBVIEW_API extern OrderedHashMap<StringView, StringView> const user_agents;
Optional<StringView> normalize_user_agent_name(StringView);
WEBVIEW_API Optional<StringView> normalize_user_agent_name(StringView);
}