Update to Chromium version 105.0.5176.0 (#1023155)

This commit is contained in:
Marshall Greenblatt
2022-07-21 13:26:10 -04:00
parent 5e753d211f
commit e9f29ab3d6
92 changed files with 615 additions and 700 deletions

View File

@@ -72,13 +72,13 @@ bool CefThreadImpl::Create(const CefString& display_name,
switch (priority) {
case TP_BACKGROUND:
options.priority = base::ThreadPriority::BACKGROUND;
options.thread_type = base::ThreadType::kBackground;
break;
case TP_DISPLAY:
options.priority = base::ThreadPriority::DISPLAY;
options.thread_type = base::ThreadType::kDisplayCritical;
break;
case TP_REALTIME_AUDIO:
options.priority = base::ThreadPriority::REALTIME_AUDIO;
options.thread_type = base::ThreadType::kRealtimeAudio;
break;
default:
break;