Index: remoting/host/screen_recorder.cc |
diff --git a/remoting/host/screen_recorder.cc b/remoting/host/screen_recorder.cc |
index c15419735e43c2f6b2e7aa5318d697713fb1a467..76ebcc8e4128d177bd74bbf2f198916fa4d9aec2 100644 |
--- a/remoting/host/screen_recorder.cc |
+++ b/remoting/host/screen_recorder.cc |
@@ -102,8 +102,8 @@ void ScreenRecorder::RemoveAllConnections() { |
Capturer* ScreenRecorder::capturer() { |
DCHECK_EQ(capture_loop_, MessageLoop::current()); |
- DCHECK(capturer_); |
- return capturer_; |
+ DCHECK(capturer_.get()); |
+ return capturer_.get(); |
} |
Encoder* ScreenRecorder::encoder() { |