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

Unified Diff: content/test/data/media/peerconnection-call-data.html

Issue 2167133002: Separates the WebRTC browser tests that deal with audio detection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Typo DISABLE -> DISABLED Created 4 years, 5 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 | « content/test/data/media/peerconnection-call-audio.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/media/peerconnection-call-data.html
diff --git a/content/test/data/media/peerconnection-call-data.html b/content/test/data/media/peerconnection-call-data.html
index a45356b3788cda8ac91f6904ef70eae7d082fbb1..6dadbefcb4f057467a2c0beb1bdd71ba7d85ff69 100644
--- a/content/test/data/media/peerconnection-call-data.html
+++ b/content/test/data/media/peerconnection-call-data.html
@@ -3,7 +3,6 @@
<head>
<script type="text/javascript" src="webrtc_test_utilities.js"></script>
<script type="text/javascript" src="webrtc_test_common.js"></script>
- <script type="text/javascript" src="webrtc_test_audio.js"></script>
<script type="text/javascript">
$ = function(id) {
return document.getElementById(id);
@@ -17,7 +16,6 @@
var gFirstConnection = null;
var gSecondConnection = null;
- var gTestWithoutMsid = false;
var gLocalStream = null;
var gRemoteStreams = {};
@@ -235,10 +233,6 @@
function onRemoteStream(e, target) {
console.log("Receiving remote stream...");
- if (gTestWithoutMsid && e.stream.id != "default") {
- failTest('a default remote stream was expected but instead ' +
- e.stream.id + ' was received.');
- }
gRemoteStreams[target] = e.stream;
var remoteStreamUrl = URL.createObjectURL(e.stream);
var remoteVideo = $(target);
« no previous file with comments | « content/test/data/media/peerconnection-call-audio.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698