OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include <ctime> | 7 #include <ctime> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/files/file_enumerator.h" | 10 #include "base/files/file_enumerator.h" |
11 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
12 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/process/launch.h" | 14 #include "base/process/launch.h" |
15 #include "base/process/process.h" | 15 #include "base/process/process.h" |
16 #include "base/scoped_native_library.h" | 16 #include "base/scoped_native_library.h" |
17 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
18 #include "base/strings/string_util.h" | 18 #include "base/strings/string_util.h" |
19 #include "base/strings/stringprintf.h" | 19 #include "base/strings/stringprintf.h" |
20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
21 #include "build/build_config.h" | 21 #include "build/build_config.h" |
22 #include "chrome/browser/media/webrtc_browsertest_audio.h" | 22 #include "chrome/browser/media/webrtc/webrtc_browsertest_audio.h" |
23 #include "chrome/browser/media/webrtc_browsertest_base.h" | 23 #include "chrome/browser/media/webrtc/webrtc_browsertest_base.h" |
24 #include "chrome/browser/media/webrtc_browsertest_common.h" | 24 #include "chrome/browser/media/webrtc/webrtc_browsertest_common.h" |
25 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
26 #include "chrome/browser/ui/browser.h" | 26 #include "chrome/browser/ui/browser.h" |
27 #include "chrome/browser/ui/browser_tabstrip.h" | 27 #include "chrome/browser/ui/browser_tabstrip.h" |
28 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 28 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
29 #include "chrome/common/chrome_paths.h" | 29 #include "chrome/common/chrome_paths.h" |
30 #include "chrome/common/chrome_switches.h" | 30 #include "chrome/common/chrome_switches.h" |
31 #include "chrome/test/base/ui_test_utils.h" | 31 #include "chrome/test/base/ui_test_utils.h" |
32 #include "content/public/common/content_switches.h" | 32 #include "content/public/common/content_switches.h" |
33 #include "content/public/test/browser_test_utils.h" | 33 #include "content/public/test/browser_test_utils.h" |
34 #include "media/base/audio_parameters.h" | 34 #include "media/base/audio_parameters.h" |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 MANUAL_TestAutoGainIsOffWithAudioProcessingOff | 814 MANUAL_TestAutoGainIsOffWithAudioProcessingOff |
815 #endif | 815 #endif |
816 // Since the AGC is off here there should be no gain at all. | 816 // Since the AGC is off here there should be no gain at all. |
817 IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcAudioQualityBrowserTest, | 817 IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcAudioQualityBrowserTest, |
818 MAYBE_MANUAL_TestAutoGainIsOffWithAudioProcessingOff) { | 818 MAYBE_MANUAL_TestAutoGainIsOffWithAudioProcessingOff) { |
819 const char* kAudioCallWithoutAudioProcessing = | 819 const char* kAudioCallWithoutAudioProcessing = |
820 "{audio: { mandatory: { echoCancellation: false } } }"; | 820 "{audio: { mandatory: { echoCancellation: false } } }"; |
821 ASSERT_NO_FATAL_FAILURE(TestAutoGainControl( | 821 ASSERT_NO_FATAL_FAILURE(TestAutoGainControl( |
822 kReferenceFile, kAudioCallWithoutAudioProcessing, "_no_agc")); | 822 kReferenceFile, kAudioCallWithoutAudioProcessing, "_no_agc")); |
823 } | 823 } |
OLD | NEW |