diff options
author | phoglund@chromium.org <phoglund@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-17 11:57:18 +0000 |
---|---|---|
committer | phoglund@chromium.org <phoglund@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-17 11:57:18 +0000 |
commit | 705adf86526a4a256f29c1fe984090671df0ae27 (patch) | |
tree | f480b4427f9310ba7550c1d4b6361e7c65cd10d7 /content/test | |
parent | 2c8ad2e950de96ca9cd4c0f7a9a084b3d68475f4 (diff) | |
download | chromium_src-705adf86526a4a256f29c1fe984090671df0ae27.zip chromium_src-705adf86526a4a256f29c1fe984090671df0ae27.tar.gz chromium_src-705adf86526a4a256f29c1fe984090671df0ae27.tar.bz2 |
Fixed missing parameter in muting test.
BUG=325164
Review URL: https://codereview.chromium.org/108313009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test')
-rw-r--r-- | content/test/data/media/peerconnection-call.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/test/data/media/peerconnection-call.html b/content/test/data/media/peerconnection-call.html index b003414..afd8b03 100644 --- a/content/test/data/media/peerconnection-call.html +++ b/content/test/data/media/peerconnection-call.html @@ -279,8 +279,8 @@ detectVideoPlaying('remote-view-2', onCallEstablished); } - function callAndEnsureAudioMutingWorks() { - callAndEnsureAudioIsPlaying(); + function callAndEnsureAudioMutingWorks(force_isac_16k) { + callAndEnsureAudioIsPlaying(force_isac_16k); setAllEventsOccuredHandler(function() { var audioTrack = gSecondConnection.getRemoteStreams()[0].getAudioTracks()[0]; |