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

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

Issue 1803833002: Stop using some scoped_ptr features that unique_ptr doesn't have (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More review comments fixed Created 4 years, 9 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/desktop_and_cursor_composer_unittest.cc
diff --git a/webrtc/modules/desktop_capture/desktop_and_cursor_composer_unittest.cc b/webrtc/modules/desktop_capture/desktop_and_cursor_composer_unittest.cc
index 4835fc56c67021ffa04c275754094fdf64d28226..324c8e295a42ca12828573db4e60950195463f8b 100644
--- a/webrtc/modules/desktop_capture/desktop_and_cursor_composer_unittest.cc
+++ b/webrtc/modules/desktop_capture/desktop_and_cursor_composer_unittest.cc
@@ -190,7 +190,7 @@ TEST_F(DesktopAndCursorComposerTest, Error) {
blender_.Capture(DesktopRegion());
- EXPECT_EQ(frame_, static_cast<DesktopFrame*>(NULL));
+ EXPECT_EQ(frame_.get(), static_cast<DesktopFrame*>(NULL));
}
TEST_F(DesktopAndCursorComposerTest, Blend) {

Powered by Google App Engine
This is Rietveld 408576698