summaryrefslogtreecommitdiff
path: root/video_receive_stream.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-11-20 11:36:47 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-11-20 11:36:47 +0000
commit7f9f840e3a5a4f053bcbf3dfa80ab547cf21e957 (patch)
tree7694716e0874ae438674d6156009b6a60910c02d /video_receive_stream.h
parent964d78e5c80ec8e4cbaeece5f119806b1ef9ea22 (diff)
downloadwebrtc-7f9f840e3a5a4f053bcbf3dfa80ab547cf21e957.tar.gz
Rename video streams' start/stop methods.
{Start,Stop}{Send,Receive}() -> {Start,Stop}{Sending,Receiving}(). BUG= R=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3609005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5136 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'video_receive_stream.h')
-rw-r--r--video_receive_stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/video_receive_stream.h b/video_receive_stream.h
index f968c662..8b4f6434 100644
--- a/video_receive_stream.h
+++ b/video_receive_stream.h
@@ -164,8 +164,8 @@ class VideoReceiveStream {
StatsCallback* stats_callback;
};
- virtual void StartReceive() = 0;
- virtual void StopReceive() = 0;
+ virtual void StartReceiving() = 0;
+ virtual void StopReceiving() = 0;
// TODO(mflodman) Replace this with callback.
virtual void GetCurrentReceiveCodec(VideoCodec* receive_codec) = 0;