Index: content/browser/media/webrtc_browsertest.cc |
diff --git a/content/browser/media/webrtc_browsertest.cc b/content/browser/media/webrtc_browsertest.cc |
index 93b57f291699c602016d91adc82b422261bc2b18..251826d6490359f82746da5418a6ce6efd42168a 100644 |
--- a/content/browser/media/webrtc_browsertest.cc |
+++ b/content/browser/media/webrtc_browsertest.cc |
@@ -233,44 +233,6 @@ |
ExpectTitle("OK"); |
} |
-// This test will modify the SDP offer to an unsupported codec, which should |
-// cause SetLocalDescription to fail. |
-IN_PROC_BROWSER_TEST_F(WebrtcBrowserTest, |
- NegotiateUnsupportedVideoCodec) { |
- ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady()); |
- |
- GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html")); |
- NavigateToURL(shell(), url); |
- |
- EXPECT_TRUE(ExecuteJavascript("negotiateUnsupportedVideoCodec();")); |
- ExpectTitle("OK"); |
-} |
- |
-// This test will modify the SDP offer to use no encryption, which should |
-// cause SetLocalDescription to fail. |
-IN_PROC_BROWSER_TEST_F(WebrtcBrowserTest, NegotiateNonCryptoCall) { |
- ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady()); |
- |
- GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html")); |
- NavigateToURL(shell(), url); |
- |
- EXPECT_TRUE(ExecuteJavascript("negotiateNonCryptoCall();")); |
- ExpectTitle("OK"); |
-} |
- |
-// This test can negotiate an SDP offer that includes a b=AS:xx to control |
-// the bandwidth for audio and video |
-IN_PROC_BROWSER_TEST_F(WebrtcBrowserTest, NegotiateOfferWithBLine) { |
- ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady()); |
- |
- GURL url(embedded_test_server()->GetURL("/media/peerconnection-call.html")); |
- NavigateToURL(shell(), url); |
- |
- EXPECT_TRUE(ExecuteJavascript("negotiateOfferWithBLine();")); |
- ExpectTitle("OK"); |
-} |
- |
- |
// This test will make a complete PeerConnection-based call using legacy SDP |
// settings: GIce, external SDES, and no BUNDLE. |
#if defined(OS_WIN) && defined(USE_AURA) |