Index: webrtc/modules/rtp_rtcp/source/dtmf_queue.h |
diff --git a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h |
index c0e616f98273ce02abafbdc00fe078c0a45c5e85..b6d3a5edfc71bbf0a37d5248f4b6c5f0bfa7f684 100644 |
--- a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h |
+++ b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h |
@@ -19,12 +19,10 @@ namespace webrtc { |
class DTMFqueue { |
public: |
DTMFqueue(); |
- virtual ~DTMFqueue(); |
danilchap
2016/09/23 19:05:22
because of critsect_, DTMFqueue has non-trivial de
the sun
2016/09/23 19:15:07
Done.
|
int32_t AddDTMF(uint8_t dtmf_key, uint16_t len, uint8_t level); |
int8_t NextDTMF(uint8_t* dtmf_key, uint16_t* len, uint8_t* level); |
bool PendingDTMF(); |
- void ResetDTMF(); |
private: |
rtc::CriticalSection dtmf_critsect_; |