| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ | 5 #ifndef REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ |
| 6 #define REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ | 6 #define REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" | 13 #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" |
| 14 | 14 |
| 15 namespace remoting { | 15 namespace remoting { |
| 16 | 16 |
| 17 class DesktopSessionProxy; | 17 class DesktopSessionProxy; |
| 18 | 18 |
| 19 // Routes webrtc::DesktopCapturer calls though the IPC channel to the desktop | 19 // Routes webrtc::DesktopCapturer calls though the IPC channel to the desktop |
| 20 // session agent running in the desktop integration process. | 20 // session agent running in the desktop integration process. |
| 21 class IpcVideoFrameCapturer : public webrtc::DesktopCapturer { | 21 class IpcVideoFrameCapturer : public webrtc::DesktopCapturer { |
| 22 public: | 22 public: |
| 23 explicit IpcVideoFrameCapturer( | 23 explicit IpcVideoFrameCapturer( |
| 24 scoped_refptr<DesktopSessionProxy> desktop_session_proxy); | 24 scoped_refptr<DesktopSessionProxy> desktop_session_proxy); |
| 25 ~IpcVideoFrameCapturer() override; | 25 ~IpcVideoFrameCapturer() override; |
| 26 | 26 |
| 27 // webrtc::DesktopCapturer interface. | 27 // webrtc::DesktopCapturer interface. |
| 28 void Start(Callback* callback) override; | 28 void Start(Callback* callback) override; |
| 29 void CaptureFrame() override; | 29 void CaptureFrame() override; |
| 30 bool GetSourceList(SourceList* sources) override; |
| 31 bool SelectSource(SourceId id) override; |
| 30 | 32 |
| 31 // Called when a video |frame| has been captured. | 33 // Called when a video |frame| has been captured. |
| 32 void OnCaptureResult(webrtc::DesktopCapturer::Result result, | 34 void OnCaptureResult(webrtc::DesktopCapturer::Result result, |
| 33 std::unique_ptr<webrtc::DesktopFrame> frame); | 35 std::unique_ptr<webrtc::DesktopFrame> frame); |
| 34 | 36 |
| 35 private: | 37 private: |
| 36 // Points to the callback passed to webrtc::DesktopCapturer::Start(). | 38 // Points to the callback passed to webrtc::DesktopCapturer::Start(). |
| 37 webrtc::DesktopCapturer::Callback* callback_; | 39 webrtc::DesktopCapturer::Callback* callback_; |
| 38 | 40 |
| 39 // Wraps the IPC channel to the desktop session agent. | 41 // Wraps the IPC channel to the desktop session agent. |
| 40 scoped_refptr<DesktopSessionProxy> desktop_session_proxy_; | 42 scoped_refptr<DesktopSessionProxy> desktop_session_proxy_; |
| 41 | 43 |
| 42 // Set to true when a frame is being captured. | 44 // Set to true when a frame is being captured. |
| 43 bool capture_pending_; | 45 bool capture_pending_; |
| 44 | 46 |
| 45 // Used to cancel tasks pending on the capturer when it is stopped. | 47 // Used to cancel tasks pending on the capturer when it is stopped. |
| 46 base::WeakPtrFactory<IpcVideoFrameCapturer> weak_factory_; | 48 base::WeakPtrFactory<IpcVideoFrameCapturer> weak_factory_; |
| 47 | 49 |
| 48 DISALLOW_COPY_AND_ASSIGN(IpcVideoFrameCapturer); | 50 DISALLOW_COPY_AND_ASSIGN(IpcVideoFrameCapturer); |
| 49 }; | 51 }; |
| 50 | 52 |
| 51 } // namespace remoting | 53 } // namespace remoting |
| 52 | 54 |
| 53 #endif // REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ | 55 #endif // REMOTING_HOST_IPC_VIDEO_FRAME_CAPTURER_H_ |
| OLD | NEW |