aboutsummaryrefslogtreecommitdiff
path: root/talk/session
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org>2015-03-04 08:54:32 +0000
committerpbos@webrtc.org <pbos@webrtc.org>2015-03-04 08:55:16 +0000
commit058b1f17ac43b1fe69a8c18aaa7999ba88733dfd (patch)
tree9d60f2eda409f5ac393c6f9c4a8afe33ab09c707 /talk/session
parent7572d85aa887496d1d396f084014bcccc94c783d (diff)
downloadwebrtc-058b1f17ac43b1fe69a8c18aaa7999ba88733dfd.tar.gz
Remove GetReceiveBandwidthEstimatorStats.
Removes unnecessary non-standard stats that we don't really make use of. BUG= R=pthatcher@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/47379004 Cr-Commit-Position: refs/heads/master@{#8588} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8588 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'talk/session')
-rw-r--r--talk/session/media/channel.cc7
-rw-r--r--talk/session/media/channel.h2
2 files changed, 4 insertions, 5 deletions
diff --git a/talk/session/media/channel.cc b/talk/session/media/channel.cc
index b47676e271..1ea70e49f3 100644
--- a/talk/session/media/channel.cc
+++ b/talk/session/media/channel.cc
@@ -1775,10 +1775,9 @@ void VideoChannel::ChangeState() {
LOG(LS_INFO) << "Changing video state, recv=" << recv << " send=" << send;
}
-bool VideoChannel::GetStats(
- const StatsOptions& options, VideoMediaInfo* stats) {
- return InvokeOnWorker(Bind(&VideoMediaChannel::GetStats,
- media_channel(), options, stats));
+bool VideoChannel::GetStats(VideoMediaInfo* stats) {
+ return InvokeOnWorker(
+ Bind(&VideoMediaChannel::GetStats, media_channel(), stats));
}
void VideoChannel::StartMediaMonitor(int cms) {
diff --git a/talk/session/media/channel.h b/talk/session/media/channel.h
index 29980bba2b..05818a0f71 100644
--- a/talk/session/media/channel.h
+++ b/talk/session/media/channel.h
@@ -529,7 +529,7 @@ class VideoChannel : public BaseChannel {
int GetScreencastFps(uint32 ssrc);
int GetScreencastMaxPixels(uint32 ssrc);
// Get statistics about the current media session.
- bool GetStats(const StatsOptions& options, VideoMediaInfo* stats);
+ bool GetStats(VideoMediaInfo* stats);
sigslot::signal2<VideoChannel*, const std::vector<ConnectionInfo>&>
SignalConnectionMonitor;