Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(871)

Unified Diff: talk/session/media/channel.h

Issue 1327033002: Remove unused TypingMonitor class. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « talk/libjingle.gyp ('k') | talk/session/media/channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/channel.h
diff --git a/talk/session/media/channel.h b/talk/session/media/channel.h
index 5f51c07a287cf79aad3c2c82ab4aaa8fafc76834..c09d51ce2c49cde3200d4d694b299867ecc20087 100644
--- a/talk/session/media/channel.h
+++ b/talk/session/media/channel.h
@@ -53,8 +53,6 @@ namespace cricket {
struct CryptoParams;
class MediaContentDescription;
-struct TypingMonitorOptions;
-class TypingMonitor;
struct ViewRequest;
enum SinkType {
@@ -163,9 +161,6 @@ class BaseChannel
// Used for latency measurements.
sigslot::signal1<BaseChannel*> SignalFirstPacketReceived;
- // Used to alert UI when the muted status changes, perhaps autonomously.
- sigslot::repeater2<BaseChannel*, bool> SignalAutoMuted;
-
// Made public for easier testing.
void SetReadyToSend(TransportChannel* channel, bool ready);
@@ -232,7 +227,7 @@ class BaseChannel
void EnableMedia_w();
void DisableMedia_w();
- virtual bool MuteStream_w(uint32 ssrc, bool mute);
+ bool MuteStream_w(uint32 ssrc, bool mute);
bool IsStreamMuted_w(uint32 ssrc);
void ChannelWritable_w();
void ChannelNotWritable_w();
@@ -383,13 +378,6 @@ class VoiceChannel : public BaseChannel {
bool IsAudioMonitorRunning() const;
sigslot::signal2<VoiceChannel*, const AudioInfo&> SignalAudioMonitor;
- void StartTypingMonitor(const TypingMonitorOptions& settings);
- void StopTypingMonitor();
- bool IsTypingMonitorRunning() const;
-
- // Overrides BaseChannel::MuteStream_w.
- virtual bool MuteStream_w(uint32 ssrc, bool mute);
-
int GetInputLevel_w();
int GetOutputLevel_w();
void GetActiveStreams_w(AudioInfo::StreamList* actives);
@@ -439,7 +427,6 @@ class VoiceChannel : public BaseChannel {
bool received_media_;
rtc::scoped_ptr<VoiceMediaMonitor> media_monitor_;
rtc::scoped_ptr<AudioMonitor> audio_monitor_;
- rtc::scoped_ptr<TypingMonitor> typing_monitor_;
// Last AudioSendParameters sent down to the media_channel() via
// SetSendParameters.
« no previous file with comments | « talk/libjingle.gyp ('k') | talk/session/media/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698