Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / voice_engine / test / auto_test / standard / dtmf_test.cc
index 1eaa6e2..18faa97 100644 (file)
@@ -52,24 +52,10 @@ TEST_F(DtmfTest, TestTwoNonDtmfEvents) {
   EXPECT_EQ(0, voe_dtmf_->SendTelephoneEvent(channel_, 110, true));
 }
 
-#ifndef WEBRTC_IOS
-TEST_F(DtmfTest, ManualCanDisableDtmfPlayoutExceptOnIphone) {
-  TEST_LOG("Disabling DTMF playout (no tone should be heard) \n");
-  EXPECT_EQ(0, voe_dtmf_->SetDtmfPlayoutStatus(channel_, false));
-  EXPECT_EQ(0, voe_dtmf_->SendTelephoneEvent(channel_, 0, true));
-  Sleep(500);
-
-  TEST_LOG("Enabling DTMF playout (tone should be heard) \n");
-  EXPECT_EQ(0, voe_dtmf_->SetDtmfPlayoutStatus(channel_, true));
-  EXPECT_EQ(0, voe_dtmf_->SendTelephoneEvent(channel_, 0, true));
-  Sleep(500);
-}
-#endif
-
 // This test modifies the DTMF payload type from the default 106 to 88
 // and then runs through 16 DTMF out.of-band events.
 TEST_F(DtmfTest, ManualCanChangeDtmfPayloadType) {
-  webrtc::CodecInst codec_instance;
+  webrtc::CodecInst codec_instance = webrtc::CodecInst();
 
   TEST_LOG("Changing DTMF payload type.\n");