Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Unified Diff: webrtc/modules/desktop_capture/window_capturer_null.cc

Issue 2433503002: Remove DesktopRegion parameter from DesktopCapturer::Capture (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/desktop_capture/window_capturer_null.cc
diff --git a/webrtc/modules/desktop_capture/window_capturer_null.cc b/webrtc/modules/desktop_capture/window_capturer_null.cc
index 802d74f8a1dccbf19625d46e3ea50d170acb1857..d6ab6a46fb4681ed93a9a1e93f4418030d332175 100755
--- a/webrtc/modules/desktop_capture/window_capturer_null.cc
+++ b/webrtc/modules/desktop_capture/window_capturer_null.cc
@@ -31,7 +31,7 @@ class WindowCapturerNull : public WindowCapturer {
// DesktopCapturer interface.
void Start(Callback* callback) override;
- void CaptureFrame() override;
+ void Capture() override;
private:
Callback* callback_ = nullptr;
@@ -64,7 +64,7 @@ void WindowCapturerNull::Start(Callback* callback) {
callback_ = callback;
}
-void WindowCapturerNull::CaptureFrame() {
+void WindowCapturerNull::Capture() {
// Not implemented yet.
callback_->OnCaptureResult(Result::ERROR_TEMPORARY, nullptr);
}

Powered by Google App Engine
This is Rietveld 408576698