mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 23:19:44 +00:00
LibWebView: Enable EXPLICIT_SYMBOL_EXPORT
This commit is contained in:
parent
ed93551d59
commit
9c67c4a270
Notes:
github-actions[bot]
2025-08-23 22:06:32 +00:00
Author: https://github.com/ayeteadoe
Commit: 9c67c4a270
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5229
Reviewed-by: https://github.com/ADKaster ✅
36 changed files with 104 additions and 94 deletions
|
@ -9,10 +9,11 @@
|
|||
#include <AK/Function.h>
|
||||
#include <AK/NonnullOwnPtr.h>
|
||||
#include <LibCore/EventLoopImplementation.h>
|
||||
#include <LibWebView/Forward.h>
|
||||
|
||||
namespace WebView {
|
||||
|
||||
class EventLoopManagerMacOS final : public Core::EventLoopManager {
|
||||
class WEBVIEW_API EventLoopManagerMacOS final : public Core::EventLoopManager {
|
||||
public:
|
||||
virtual NonnullOwnPtr<Core::EventLoopImplementation> make_implementation() override;
|
||||
|
||||
|
@ -28,7 +29,7 @@ public:
|
|||
virtual void unregister_signal(int) override;
|
||||
};
|
||||
|
||||
class EventLoopImplementationMacOS final : public Core::EventLoopImplementation {
|
||||
class WEBVIEW_API EventLoopImplementationMacOS final : public Core::EventLoopImplementation {
|
||||
public:
|
||||
// FIXME: This currently only manages the main NSApp event loop, as that is all we currently
|
||||
// interact with. When we need multiple event loops, or an event loop that isn't the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue