| Index: webrtc/video/video_receive_stream.h
|
| diff --git a/webrtc/video/video_receive_stream.h b/webrtc/video/video_receive_stream.h
|
| index 011788d6b89708324dca49970d4993095e95e45d..05ff4546b1de33afc401ef172524ff2a4ac8e487 100644
|
| --- a/webrtc/video/video_receive_stream.h
|
| +++ b/webrtc/video/video_receive_stream.h
|
| @@ -29,6 +29,7 @@
|
|
|
| namespace webrtc {
|
|
|
| +class CallStats;
|
| class VoiceEngine;
|
|
|
| namespace internal {
|
| @@ -41,7 +42,8 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
|
| ChannelGroup* channel_group,
|
| const VideoReceiveStream::Config& config,
|
| webrtc::VoiceEngine* voice_engine,
|
| - ProcessThread* process_thread);
|
| + ProcessThread* process_thread,
|
| + CallStats* call_stats);
|
| ~VideoReceiveStream() override;
|
|
|
| // webrtc::ReceiveStream implementation.
|
| @@ -74,6 +76,7 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
|
| Clock* const clock_;
|
|
|
| ChannelGroup* const channel_group_;
|
| + CallStats* const call_stats_;
|
|
|
| rtc::scoped_ptr<IncomingVideoStream> incoming_video_stream_;
|
| rtc::scoped_ptr<ReceiveStatisticsProxy> stats_proxy_;
|
|
|