Allow swapping out internal WebViewManager implementation.

Everything moved to interfaces.
This commit is contained in:
Pieter-Jan Briers
2021-11-03 15:12:49 +01:00
parent 3770149cfc
commit dae6424667
20 changed files with 775 additions and 547 deletions

View File

@@ -0,0 +1,7 @@
namespace Robust.Client.WebView
{
internal interface IWebViewManagerInternal : IWebViewManager
{
IWebViewControlImpl MakeControlImpl(WebViewControl owner);
}
}