Skip to content

Tags: mark-pie/CefSharp

Tags

v98.1.210

Toggle v98.1.210's commit message
Upgrade to CEF 98.1.21+g9782362+chromium-98.0.4758.102 / Chromium 98.…

…0.4758.102

v98.1.190

Toggle v98.1.190's commit message
WPF - CompositionTargetRenderHandler add null check

v97.1.61

Toggle v97.1.61's commit message
Net Core - Fix failing test

- WaitForQUnitTestExeuctionToComplete was renamed to CreateBrowserAndWaitForQUnitTestExeuctionToComplete

v97.1.60

Toggle v97.1.60's commit message
Upgrade to CEF 97.1.6+g8961cdb+chromium-97.0.4692.99 / Chromium 97.0.…

…4692.99

v97.1.12

Toggle v97.1.12's commit message
Core - CefResourceRequestHandlerAdapter.GetCookieAccessFilter object …

…reference not set to an instance of an object.

For resource requests that are handled by CefRequestContextHandlerAdapter::GetResourceRequestHandler
then _browserControl field will be null, added additional checks before calling TryGetBrowserCoreById

Follow up to cefsharp@4ade0b8

Issue cefsharp#3967

v97.1.11

Toggle v97.1.11's commit message
WPF - Update CleanupElement when PresentationSource changes

- If the CleanupElement is a Window then move it to the new Window

v97.1.10-pre

Toggle v97.1.10-pre's commit message
Test - Skip LoadJavaScriptBindingQunitTestsSuccessfulCompletion

Issue cefsharp#3867

v96.0.180

Toggle v96.0.180's commit message
Upgrade to CEF 96.0.18+gfe551e4+chromium-96.0.4664.110 / Chromium 96.…

…0.4664.110

v96.0.170

Toggle v96.0.170's commit message
BrowserSubProcess - Change SetProcessShutdownParameters priority to 0…

…x200

- Change to 0x200 which is low end of 'Application reserved "in between" shutdown range.'
- Remove logging as it wasn't working, must be too early to use the LOG(INFO) CEF macro

Test with a GetProcessShutdownParameters in debugger shows working e.g.

if (SetProcessShutdownParameters(0x200, SHUTDOWN_NORETRY))
{
	DWORD level = 0;
	DWORD flags = 0;
	GetProcessShutdownParameters(&level, &flags);
}

Issue cefsharp#3155

v96.0.142

Toggle v96.0.142's commit message
Core - Fix ExecuteScriptAsync infinite recursion

Resolves cefsharp#3914