mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
18 lines
512 B
C#
18 lines
512 B
C#
using Xilium.CefGlue;
|
|
|
|
namespace Robust.Client.WebView.Cef
|
|
{
|
|
public sealed class RobustLoadHandler : CefLoadHandler
|
|
{
|
|
protected override void OnLoadStart(CefBrowser browser, CefFrame frame, CefTransitionType transitionType)
|
|
{
|
|
base.OnLoadStart(browser, frame, transitionType);
|
|
}
|
|
|
|
protected override void OnLoadEnd(CefBrowser browser, CefFrame frame, int httpStatusCode)
|
|
{
|
|
base.OnLoadEnd(browser, frame, httpStatusCode);
|
|
}
|
|
}
|
|
}
|