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

Unified Diff: webrtc/modules/rtp_rtcp/source/dtmf_queue.h

Issue 2365873002: Make RtpSenderAudio not inherit from DtmfQueue (Closed)
Patch Set: not inline Created 4 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 | « no previous file | webrtc/modules/rtp_rtcp/source/dtmf_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..fbfc4efcb14fd461b227bb2804afd06ef5b77191 100644
--- a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h
+++ b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h
@@ -19,12 +19,11 @@ namespace webrtc {
class DTMFqueue {
public:
DTMFqueue();
- virtual ~DTMFqueue();
+ ~DTMFqueue();
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_;
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/dtmf_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698