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