| // Copyright 2021 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_MAC_H_ |
| #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_MAC_H_ |
| |
| #include <stdint.h> |
| |
| #include <memory> |
| |
| #include "content/browser/media/capture/desktop_capture_device_uma_types.h" |
| #include "content/common/content_export.h" |
| #include "content/public/browser/desktop_media_id.h" |
| |
| namespace media { |
| class VideoCaptureDevice; |
| } // namespace media |
| |
| namespace content { |
| |
| std::unique_ptr<media::VideoCaptureDevice> CONTENT_EXPORT |
| CreateDesktopCaptureDeviceMac(const DesktopMediaID& source); |
| |
| } // namespace content |
| |
| #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_MAC_H_ |