Skip to content

Commit 592c8a3

Browse files
committed
Net Core - Update CefSharp.Core.RefAssembly
Didn't update properly for the last two commits issue #3197
1 parent aada072 commit 592c8a3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

CefSharp.Core.RefAssembly/CefSharp.Core.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public partial class ManagedCefBrowserAdapter : CefSharp.Internals.IBrowserAdapt
152152
public ManagedCefBrowserAdapter(CefSharp.Internals.IWebBrowserInternal webBrowserInternal, bool offScreenRendering) { }
153153
public virtual bool IsDisposed { get { throw null; } }
154154
public virtual CefSharp.Internals.IJavascriptCallbackFactory JavascriptCallbackFactory { get { throw null; } }
155-
public virtual CefSharp.Internals.JavascriptObjectRepository JavascriptObjectRepository { get { throw null; } }
155+
public virtual CefSharp.Internals.IJavascriptObjectRepositoryInternal JavascriptObjectRepository { get { throw null; } }
156156
public virtual CefSharp.Internals.IMethodRunnerQueue MethodRunnerQueue { get { throw null; } }
157157
public void CreateBrowser(CefSharp.IWindowInfo windowInfo, CefSharp.BrowserSettings browserSettings, CefSharp.RequestContext requestContext, string address) { }
158158
public void Dispose() { }
@@ -329,6 +329,14 @@ public virtual void SetAsPopup(System.IntPtr parentHandle, string windowName) {
329329
public virtual void SetAsWindowless(System.IntPtr parentHandle) { }
330330
}
331331
}
332+
namespace CefSharp.BrowserSubprocess
333+
{
334+
public partial class SelfHost
335+
{
336+
public SelfHost() { }
337+
public static int MainNetCore(string[] args) { throw null; }
338+
}
339+
}
332340
namespace CefSharp.Internals
333341
{
334342
public partial class CefDragDataWrapper : CefSharp.Internals.CefWrapper, CefSharp.IDragData

0 commit comments

Comments
 (0)