| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ | 5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ |
| 6 #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ | 6 #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "content/public/browser/desktop_media_id.h" | 13 #include "content/public/browser/desktop_media_id.h" |
| 14 #include "media/capture/content/screen_capture_device_core.h" | 14 #include "device/capture/content/screen_capture_device_core.h" |
| 15 #include "media/capture/video/video_capture_device.h" | 15 #include "device/capture/video/video_capture_device.h" |
| 16 | 16 |
| 17 namespace aura { | 17 namespace aura { |
| 18 class Window; | 18 class Window; |
| 19 } // namespace aura | 19 } // namespace aura |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 | 22 |
| 23 // An implementation of VideoCaptureDevice that mirrors an Aura window. | 23 // An implementation of VideoCaptureDevice that mirrors an Aura window. |
| 24 class CONTENT_EXPORT DesktopCaptureDeviceAura | 24 class CONTENT_EXPORT DesktopCaptureDeviceAura |
| 25 : public media::VideoCaptureDevice { | 25 : public device::VideoCaptureDevice { |
| 26 public: | 26 public: |
| 27 // Creates a VideoCaptureDevice for the Aura desktop. If |source| does not | 27 // Creates a VideoCaptureDevice for the Aura desktop. If |source| does not |
| 28 // reference a registered aura window, returns nullptr instead. | 28 // reference a registered aura window, returns nullptr instead. |
| 29 static std::unique_ptr<media::VideoCaptureDevice> Create( | 29 static std::unique_ptr<device::VideoCaptureDevice> Create( |
| 30 const DesktopMediaID& source); | 30 const DesktopMediaID& source); |
| 31 | 31 |
| 32 ~DesktopCaptureDeviceAura() override; | 32 ~DesktopCaptureDeviceAura() override; |
| 33 | 33 |
| 34 // VideoCaptureDevice implementation. | 34 // VideoCaptureDevice implementation. |
| 35 void AllocateAndStart(const media::VideoCaptureParams& params, | 35 void AllocateAndStart(const media::VideoCaptureParams& params, |
| 36 std::unique_ptr<Client> client) override; | 36 std::unique_ptr<Client> client) override; |
| 37 void RequestRefreshFrame() override; | 37 void RequestRefreshFrame() override; |
| 38 void StopAndDeAllocate() override; | 38 void StopAndDeAllocate() override; |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 explicit DesktopCaptureDeviceAura(const DesktopMediaID& source); | 41 explicit DesktopCaptureDeviceAura(const DesktopMediaID& source); |
| 42 | 42 |
| 43 std::unique_ptr<media::ScreenCaptureDeviceCore> core_; | 43 std::unique_ptr<device::ScreenCaptureDeviceCore> core_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAura); | 45 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAura); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 | 48 |
| 49 } // namespace content | 49 } // namespace content |
| 50 | 50 |
| 51 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ | 51 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ |
| OLD | NEW |