Chromium Code Reviews| Index: remoting/protocol/webrtc_video_capturer_adapter.h |
| diff --git a/remoting/protocol/webrtc_video_capturer_adapter.h b/remoting/protocol/webrtc_video_capturer_adapter.h |
| index e13c06b6684380265ac9f018b4a3ec2f147aa61f..c3df48a1dcb303485a12ae31fc1a9c0c384b1055 100644 |
| --- a/remoting/protocol/webrtc_video_capturer_adapter.h |
| +++ b/remoting/protocol/webrtc_video_capturer_adapter.h |
| @@ -83,7 +83,7 @@ class WebrtcVideoCapturerAdapter : public cricket::VideoCapturer, |
| // Video frame is kept between captures to avoid YUV conversion for static |
| // parts of the screen. |
| - scoped_ptr<cricket::VideoFrame> yuv_frame_; |
| + rtc::scoped_refptr<webrtc::I420Buffer> yuv_frame_; |
|
perkj_chrome
2016/03/30 14:58:26
nit: This should use Chromes scoped_refptr - not R
|
| bool capture_pending_ = false; |
| bool paused_ = false; |
| @@ -97,4 +97,3 @@ class WebrtcVideoCapturerAdapter : public cricket::VideoCapturer, |
| } // namespace remoting |
| #endif // REMOTING_PROTOCOL_WEBRTC_VIDEO_CAPTURER_ADAPTER_H_ |
| - |