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

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

Issue 1988783003: Use std::unique_ptr<> to pass frame ownership in DesktopCapturer impls. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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_win.cc
diff --git a/webrtc/modules/desktop_capture/window_capturer_win.cc b/webrtc/modules/desktop_capture/window_capturer_win.cc
index 702324372bd60c6fbc2d17977c75866214bed014..c7c312a17e957b3d132ed00ec7ab6c2f4a1e3cf0 100644
--- a/webrtc/modules/desktop_capture/window_capturer_win.cc
+++ b/webrtc/modules/desktop_capture/window_capturer_win.cc
@@ -95,11 +95,11 @@ class WindowCapturerWin : public WindowCapturer {
void Capture(const DesktopRegion& region) override;
private:
- Callback* callback_;
+ Callback* callback_ = nullptr;
- // HWND and HDC for the currently selected window or NULL if window is not
+ // HWND and HDC for the currently selected window or nullptr if window is not
// selected.
- HWND window_;
+ HWND window_ = nullptr;
DesktopSize previous_size_;
@@ -112,13 +112,8 @@ class WindowCapturerWin : public WindowCapturer {
RTC_DISALLOW_COPY_AND_ASSIGN(WindowCapturerWin);
};
-WindowCapturerWin::WindowCapturerWin()
- : callback_(NULL),
- window_(NULL) {
-}
-
-WindowCapturerWin::~WindowCapturerWin() {
-}
+WindowCapturerWin::WindowCapturerWin() {}
+WindowCapturerWin::~WindowCapturerWin() {}
bool WindowCapturerWin::GetWindowList(WindowList* windows) {
WindowList result;
@@ -168,13 +163,13 @@ void WindowCapturerWin::Start(Callback* callback) {
void WindowCapturerWin::Capture(const DesktopRegion& region) {
if (!window_) {
LOG(LS_ERROR) << "Window hasn't been selected: " << GetLastError();
- callback_->OnCaptureCompleted(NULL);
+ callback_->OnCaptureResult(Result::ERROR_PERMANENT, nullptr);
return;
}
// Stop capturing if the window has been closed.
if (!IsWindow(window_)) {
- callback_->OnCaptureCompleted(NULL);
+ callback_->OnCaptureResult(Result::ERROR_PERMANENT, nullptr);
return;
}
@@ -182,12 +177,13 @@ void WindowCapturerWin::Capture(const DesktopRegion& region) {
// behavior on mace. Window can be temporarily invisible during the
// transition of full screen mode on/off.
if (IsIconic(window_) || !IsWindowVisible(window_)) {
- BasicDesktopFrame* frame = new BasicDesktopFrame(DesktopSize(1, 1));
+ std::unique_ptr<DesktopFrame> frame(
+ new BasicDesktopFrame(DesktopSize(1, 1)));
memset(frame->data(), 0, frame->stride() * frame->size().height());
previous_size_ = frame->size();
window_size_map_[window_] = previous_size_;
- callback_->OnCaptureCompleted(frame);
+ callback_->OnCaptureResult(Result::SUCCESS, std::move(frame));
return;
}
@@ -195,22 +191,22 @@ void WindowCapturerWin::Capture(const DesktopRegion& region) {
DesktopRect cropped_rect;
if (!GetCroppedWindowRect(window_, &cropped_rect, &original_rect)) {
LOG(LS_WARNING) << "Failed to get window info: " << GetLastError();
- callback_->OnCaptureCompleted(NULL);
+ callback_->OnCaptureResult(Result::ERROR_TEMPORARY, nullptr);
return;
}
HDC window_dc = GetWindowDC(window_);
if (!window_dc) {
LOG(LS_WARNING) << "Failed to get window DC: " << GetLastError();
- callback_->OnCaptureCompleted(NULL);
+ callback_->OnCaptureResult(Result::ERROR_TEMPORARY, nullptr);
return;
}
std::unique_ptr<DesktopFrameWin> frame(
- DesktopFrameWin::Create(cropped_rect.size(), NULL, window_dc));
+ DesktopFrameWin::Create(cropped_rect.size(), nullptr, window_dc));
if (!frame.get()) {
ReleaseDC(window_, window_dc);
- callback_->OnCaptureCompleted(NULL);
+ callback_->OnCaptureResult(Result::ERROR_TEMPORARY, nullptr);
return;
}
@@ -263,7 +259,7 @@ void WindowCapturerWin::Capture(const DesktopRegion& region) {
frame.reset();
}
- callback_->OnCaptureCompleted(frame.release());
+ callback_->OnCaptureResult(Result::SUCCESS, std::move(frame));
}
} // namespace
« no previous file with comments | « webrtc/modules/desktop_capture/window_capturer_unittest.cc ('k') | webrtc/modules/desktop_capture/window_capturer_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698