diff options
Diffstat (limited to 'remoting/host/screen_recorder.cc')
-rw-r--r-- | remoting/host/screen_recorder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/screen_recorder.cc b/remoting/host/screen_recorder.cc index 76ebcc8..c154197 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_.get()); - return capturer_.get(); + DCHECK(capturer_); + return capturer_; } Encoder* ScreenRecorder::encoder() { |