mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-13 02:12:07 +02:00
- Windows: 10.0.19041 SDK is now required. - macOS: 10.15.1 SDK (at least Xcode 11.2) is now required. - Remove CefMediaSource::IsValid and CefMediaSink::IsValid which would always return true.
14 lines
634 B
Diff
14 lines
634 B
Diff
diff --git content/browser/screenlock_monitor/screenlock_monitor_device_source_win.cc content/browser/screenlock_monitor/screenlock_monitor_device_source_win.cc
|
|
index 444e19ccb601..6d696b28f417 100644
|
|
--- content/browser/screenlock_monitor/screenlock_monitor_device_source_win.cc
|
|
+++ content/browser/screenlock_monitor/screenlock_monitor_device_source_win.cc
|
|
@@ -49,7 +49,7 @@ bool ScreenlockMonitorDeviceSource::SessionMessageWindow::OnWndProc(
|
|
if (message == WM_WTSSESSION_CHANGE) {
|
|
ProcessWTSSessionLockMessage(wparam);
|
|
}
|
|
- return true;
|
|
+ return false;
|
|
}
|
|
|
|
void ScreenlockMonitorDeviceSource::SessionMessageWindow::
|