| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // window is on top. | 25 // window is on top. |
| 26 class CroppingWindowCapturer : public WindowCapturer, | 26 class CroppingWindowCapturer : public WindowCapturer, |
| 27 public DesktopCapturer::Callback { | 27 public DesktopCapturer::Callback { |
| 28 public: | 28 public: |
| 29 static WindowCapturer* Create(const DesktopCaptureOptions& options); | 29 static WindowCapturer* Create(const DesktopCaptureOptions& options); |
| 30 virtual ~CroppingWindowCapturer(); | 30 virtual ~CroppingWindowCapturer(); |
| 31 | 31 |
| 32 // DesktopCapturer implementation. | 32 // DesktopCapturer implementation. |
| 33 void Start(DesktopCapturer::Callback* callback) override; | 33 void Start(DesktopCapturer::Callback* callback) override; |
| 34 void SetSharedMemoryFactory( | 34 void SetSharedMemoryFactory( |
| 35 rtc::scoped_ptr<SharedMemoryFactory> shared_memory_factory) override; | 35 std::unique_ptr<SharedMemoryFactory> shared_memory_factory) override; |
| 36 void Capture(const DesktopRegion& region) override; | 36 void Capture(const DesktopRegion& region) override; |
| 37 void SetExcludedWindow(WindowId window) override; | 37 void SetExcludedWindow(WindowId window) override; |
| 38 | 38 |
| 39 // WindowCapturer implementation. | 39 // WindowCapturer implementation. |
| 40 bool GetWindowList(WindowList* windows) override; | 40 bool GetWindowList(WindowList* windows) override; |
| 41 bool SelectWindow(WindowId id) override; | 41 bool SelectWindow(WindowId id) override; |
| 42 bool BringSelectedWindowToFront() override; | 42 bool BringSelectedWindowToFront() override; |
| 43 | 43 |
| 44 // DesktopCapturer::Callback implementation, passed to |screen_capturer_| to | 44 // DesktopCapturer::Callback implementation, passed to |screen_capturer_| to |
| 45 // intercept the capture result. | 45 // intercept the capture result. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 68 std::unique_ptr<WindowCapturer> window_capturer_; | 68 std::unique_ptr<WindowCapturer> window_capturer_; |
| 69 std::unique_ptr<ScreenCapturer> screen_capturer_; | 69 std::unique_ptr<ScreenCapturer> screen_capturer_; |
| 70 WindowId selected_window_; | 70 WindowId selected_window_; |
| 71 WindowId excluded_window_; | 71 WindowId excluded_window_; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace webrtc | 74 } // namespace webrtc |
| 75 | 75 |
| 76 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ | 76 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_CROPPING_WINDOW_CAPTURER_H_ |
| 77 | 77 |
| OLD | NEW |