Chromium Code Reviews| Index: remoting/host/chromeos/aura_desktop_capturer.h |
| diff --git a/remoting/host/chromeos/aura_desktop_capturer.h b/remoting/host/chromeos/aura_desktop_capturer.h |
| index 4ccd5db8a20128df2fee7222dd95f4543dec470e..e6426e37123981996db13348b4cc7690c70778a3 100644 |
| --- a/remoting/host/chromeos/aura_desktop_capturer.h |
| +++ b/remoting/host/chromeos/aura_desktop_capturer.h |
| @@ -22,7 +22,7 @@ namespace remoting { |
| // Aura Shell. This is implemented by requesting the layer and its substree to |
| // be rendered to a given data structure. Start() and Capture() must be called |
| // on the Browser UI thread. |
|
Wez
2014/10/17 17:57:59
Update this comment?
kelvinp
2014/10/20 00:21:16
Done.
|
| -class AuraDesktopCapturer : public webrtc::DesktopCapturer { |
| +class AuraDesktopCapturer : public webrtc::ScreenCapturer { |
|
Wez
2014/10/17 17:58:00
AuraScreenCapturer?
kelvinp
2014/10/20 00:21:16
Done.
|
| public: |
| AuraDesktopCapturer(); |
| virtual ~AuraDesktopCapturer(); |
| @@ -31,6 +31,10 @@ class AuraDesktopCapturer : public webrtc::DesktopCapturer { |
| virtual void Start(webrtc::DesktopCapturer::Callback* callback) override; |
| virtual void Capture(const webrtc::DesktopRegion& region) override; |
| + // webrtc::ScreenCapturer implementation. |
| + virtual bool GetScreenList(ScreenList* screens) override; |
| + virtual bool SelectScreen(webrtc::ScreenId id) override; |
| + |
| private: |
| friend class AuraDesktopCapturerTest; |