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

Unified Diff: Source/modules/mediastream/RTCDTMFSender.cpp

Issue 337343002: IDL: make optional arguments (without default) explicit sometimes Base URL: https://chromium.googlesource.com/chromium/blink.git@idl-default-arguments-next
Patch Set: Created 6 years, 4 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 | « Source/modules/mediastream/RTCDTMFSender.h ('k') | Source/modules/mediastream/RTCDTMFSender.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCDTMFSender.cpp
diff --git a/Source/modules/mediastream/RTCDTMFSender.cpp b/Source/modules/mediastream/RTCDTMFSender.cpp
index e59854324ed1711c90261d3b9472c7b14be41c5a..1c7e56305d18bf3018fba95b2fefde0991922ec2 100644
--- a/Source/modules/mediastream/RTCDTMFSender.cpp
+++ b/Source/modules/mediastream/RTCDTMFSender.cpp
@@ -89,16 +89,6 @@ String RTCDTMFSender::toneBuffer() const
return m_handler->currentToneBuffer();
}
-void RTCDTMFSender::insertDTMF(const String& tones, ExceptionState& exceptionState)
-{
- insertDTMF(tones, defaultToneDurationMs, defaultInterToneGapMs, exceptionState);
-}
-
-void RTCDTMFSender::insertDTMF(const String& tones, long duration, ExceptionState& exceptionState)
-{
- insertDTMF(tones, duration, defaultInterToneGapMs, exceptionState);
-}
-
void RTCDTMFSender::insertDTMF(const String& tones, long duration, long interToneGap, ExceptionState& exceptionState)
{
if (!canInsertDTMF()) {
« no previous file with comments | « Source/modules/mediastream/RTCDTMFSender.h ('k') | Source/modules/mediastream/RTCDTMFSender.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698