Restore support for CreateBrowserSync with NULL |request_context| (see issue #2969)
This was unintentionally lost during the Chrome runtime refactoring effort.
This commit is contained in:
parent
21ac0be8d7
commit
5ddd26e483
|
@ -119,6 +119,10 @@ CefRefPtr<CefBrowser> CefBrowserHost::CreateBrowserSync(
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!request_context) {
|
||||||
|
request_context = CefRequestContext::GetGlobalContext();
|
||||||
|
}
|
||||||
|
|
||||||
// Verify that the browser context is valid.
|
// Verify that the browser context is valid.
|
||||||
auto request_context_impl =
|
auto request_context_impl =
|
||||||
static_cast<CefRequestContextImpl*>(request_context.get());
|
static_cast<CefRequestContextImpl*>(request_context.get());
|
||||||
|
|
Loading…
Reference in New Issue