mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-27 17:49:20 +01:00
af1f40a2d3
- Mac: Minimum system version is now 11.0. - Win: Windows SDK version is now 10.0.22621.2428.
16 lines
716 B
Diff
16 lines
716 B
Diff
diff --git base/task/thread_pool/thread_pool_impl.cc base/task/thread_pool/thread_pool_impl.cc
|
|
index 64c0f50323144..cc9a4b840bafa 100644
|
|
--- base/task/thread_pool/thread_pool_impl.cc
|
|
+++ base/task/thread_pool/thread_pool_impl.cc
|
|
@@ -104,6 +104,10 @@ ThreadPoolImpl::ThreadPoolImpl(std::string_view histogram_label,
|
|
: kForegroundPoolEnvironmentParams.thread_type_hint,
|
|
task_tracker_->GetTrackedRef(), tracked_ref_factory_.GetTrackedRef());
|
|
}
|
|
+
|
|
+ // After https://crrev.com/e2e090c363 the ThreadPool is being created earlier
|
|
+ // during initialization. Detach now so we can rebind later on the UI thread.
|
|
+ DETACH_FROM_SEQUENCE(sequence_checker_);
|
|
}
|
|
|
|
ThreadPoolImpl::~ThreadPoolImpl() {
|