| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 class DesktopFrame; | 22 class DesktopFrame; |
| 23 class DesktopRegion; | 23 class DesktopRegion; |
| 24 | 24 |
| 25 // Abstract interface for screen and window capturers. | 25 // Abstract interface for screen and window capturers. |
| 26 class DesktopCapturer { | 26 class DesktopCapturer { |
| 27 public: | 27 public: |
| 28 // Interface that must be implemented by the DesktopCapturer consumers. | 28 // Interface that must be implemented by the DesktopCapturer consumers. |
| 29 class Callback { | 29 class Callback { |
| 30 public: | 30 public: |
| 31 // Deprecated. | |
| 32 // TODO(sergeyu): Remove this method once all references to it are removed | |
| 33 // from chromium. | |
| 34 virtual SharedMemory* CreateSharedMemory(size_t size) { return nullptr; } | |
| 35 | |
| 36 // Called after a frame has been captured. Handler must take ownership of | 31 // Called after a frame has been captured. Handler must take ownership of |
| 37 // |frame|. If capture has failed for any reason |frame| is set to NULL | 32 // |frame|. If capture has failed for any reason |frame| is set to NULL |
| 38 // (e.g. the window has been closed). | 33 // (e.g. the window has been closed). |
| 39 virtual void OnCaptureCompleted(DesktopFrame* frame) = 0; | 34 virtual void OnCaptureCompleted(DesktopFrame* frame) = 0; |
| 40 | 35 |
| 41 protected: | 36 protected: |
| 42 virtual ~Callback() {} | 37 virtual ~Callback() {} |
| 43 }; | 38 }; |
| 44 | 39 |
| 45 virtual ~DesktopCapturer() {} | 40 virtual ~DesktopCapturer() {} |
| (...skipping 20 matching lines...) Expand all Loading... |
| 66 // Sets the window to be excluded from the captured image in the future | 61 // Sets the window to be excluded from the captured image in the future |
| 67 // Capture calls. Used to exclude the screenshare notification window for | 62 // Capture calls. Used to exclude the screenshare notification window for |
| 68 // screen capturing. | 63 // screen capturing. |
| 69 virtual void SetExcludedWindow(WindowId window) {} | 64 virtual void SetExcludedWindow(WindowId window) {} |
| 70 }; | 65 }; |
| 71 | 66 |
| 72 } // namespace webrtc | 67 } // namespace webrtc |
| 73 | 68 |
| 74 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_CAPTURER_H_ | 69 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_CAPTURER_H_ |
| 75 | 70 |
| OLD | NEW |