| 952 | } |
| 953 | |
| 954 | HRESULT BrowserWindow::PostJsonToWebView(web::json::value jsonObj, ICoreWebView2* webview) |
| 955 | { |
| 956 | utility::stringstream_t stream; |
| 957 | jsonObj.serialize(stream); |
| 958 | |
| 959 | return webview->PostWebMessageAsJson(stream.str().c_str()); |
| 960 | } |
nothing calls this directly
no outgoing calls
no test coverage detected