1234567891011121314151617 |
- // Copyright (c) 2024 Salesforce, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #include "shell/browser/api/electron_api_desktop_capturer.h"
- namespace electron::api {
- // static
- bool DesktopCapturer::IsDisplayMediaSystemPickerAvailable() {
- if (@available(macOS 15.0, *)) {
- return true;
- }
- return false;
- }
- } // namespace electron::api
|