| Index: remoting/host/screen_recorder.h
|
| diff --git a/remoting/host/screen_recorder.h b/remoting/host/screen_recorder.h
|
| index cbedd934dbf0c89a8c7b6898e5122428b1cb665f..94ebfe5a556f70158f579623a262697d0f7cd727 100644
|
| --- a/remoting/host/screen_recorder.h
|
| +++ b/remoting/host/screen_recorder.h
|
| @@ -64,7 +64,7 @@ class ScreenRecorder : public base::RefCountedThreadSafe<ScreenRecorder> {
|
| public:
|
|
|
| // Construct a ScreenRecorder. Message loops and threads are provided.
|
| - // This object does not own capturer and encoder.
|
| + // This object does not own capturer but owns encoder.
|
| ScreenRecorder(MessageLoop* capture_loop,
|
| MessageLoop* encode_loop,
|
| MessageLoop* network_loop,
|
| @@ -154,7 +154,7 @@ class ScreenRecorder : public base::RefCountedThreadSafe<ScreenRecorder> {
|
|
|
| // Reference to the capturer. This member is always accessed on the capture
|
| // thread.
|
| - scoped_ptr<Capturer> capturer_;
|
| + Capturer* capturer_;
|
|
|
| // Reference to the encoder. This member is always accessed on the encode
|
| // thread.
|
|
|