From 1a404b78c21dc83e4dc5015012498e0329c7e2de Mon Sep 17 00:00:00 2001 From: phoglund Date: Tue, 9 Dec 2014 03:21:13 -0800 Subject: Implementing WebRTC Auto Gain Control (AGC) test (minus verification). This implements the test scaffolding. We still need a tool to analyze the audio energy of the output file and ensure it matches the energy level of the input file. The test will be disabled for now until the tool is in place. The next patches will be to wire up the tool and, after that, write more exciting tests which verify the AGC actually kicks in and adjusts the level (this test just ensures it doesn't zero the volume level). BUG=303259 Review URL: https://codereview.chromium.org/753993002 Cr-Commit-Position: refs/heads/master@{#307448} --- chrome/browser/media/webrtc_browsertest_base.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'chrome/browser/media/webrtc_browsertest_base.cc') diff --git a/chrome/browser/media/webrtc_browsertest_base.cc b/chrome/browser/media/webrtc_browsertest_base.cc index ea00f7a..93404d8 100644 --- a/chrome/browser/media/webrtc_browsertest_base.cc +++ b/chrome/browser/media/webrtc_browsertest_base.cc @@ -185,10 +185,6 @@ WebRtcTestBase::OpenPageAndGetUserMediaInNewTabWithConstraints( const std::string& constraints) const { chrome::AddTabAt(browser(), GURL(), -1, true); ui_test_utils::NavigateToURL(browser(), url); -#if defined (OS_LINUX) - // Load the page again on Linux to work around crbug.com/281268. - ui_test_utils::NavigateToURL(browser(), url); -#endif content::WebContents* new_tab = browser()->tab_strip_model()->GetActiveWebContents(); GetUserMediaWithSpecificConstraintsAndAccept(new_tab, constraints); -- cgit v1.1