mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-03 19:37:47 +01:00
- Remove CefRequestContextHandler::OnBeforePluginLoad and CefRequestContext::PurgePluginListCache (fixes issue #3047). These methods stopped being relevant after the removal of Flash support in January 2021. The last remaining PPAPI plugin (PDF viewer) will switch to a non-plugin implementation in the near future (see https://crbug.com/702993#c58) and functionality related to plugin filtering has already been removed in https://crrev.com/343ae351c9.
14 lines
549 B
Diff
14 lines
549 B
Diff
diff --git content/browser/scheduler/browser_task_executor.cc content/browser/scheduler/browser_task_executor.cc
|
|
index 1b3d5cfdfc484..9ad7de56ca84f 100644
|
|
--- content/browser/scheduler/browser_task_executor.cc
|
|
+++ content/browser/scheduler/browser_task_executor.cc
|
|
@@ -315,7 +315,7 @@ BrowserTaskExecutor::OnUserInputStart() {
|
|
|
|
// static
|
|
void BrowserTaskExecutor::Shutdown() {
|
|
- if (!g_browser_task_executor)
|
|
+ if (!g_browser_task_executor || !g_browser_task_executor->ui_thread_executor_)
|
|
return;
|
|
|
|
DCHECK(Get()->ui_thread_executor_);
|