mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 11:41:08 +00:00
25 lines
670 B
C++
25 lines
670 B
C++
#pragma once
|
|||
|
|
#include "WebBridge.g.h"
|
||
|
|
|
||
|
|
|
||
|
|
namespace winrt::WebViewBridgeComponent::implementation
|
||
|
|
{
|
||
|
|
struct WebBridge : WebBridgeT<WebBridge>
|
||
|
|
{
|
||
|
|
WebBridge() = default;
|
||
|
|
|
||
|
|
void PostMessage(hstring const& message);
|
||
|
|
winrt::event_token MessagePostEvent(Windows::Foundation::EventHandler<hstring> const& handler);
|
||
|
|
void MessagePostEvent(winrt::event_token const& token) noexcept;
|
||
|
|
|
||
|
|
private:
|
||
|
|
winrt::event<Windows::Foundation::EventHandler<winrt::hstring>> m_messageEvent;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
namespace winrt::WebViewBridgeComponent::factory_implementation
|
||
|
|
{
|
||
|
|
struct WebBridge : WebBridgeT<WebBridge, implementation::WebBridge>
|
||
|
|
{
|
||
|
|
};
|
||
|
|
}
|