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

Side by Side Diff: webrtc/modules/audio_processing/audio_processing_performance_unittest.cc

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: rebase Created 3 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include "webrtc/modules/audio_processing/audio_processing_impl.h" 10 #include "webrtc/modules/audio_processing/audio_processing_impl.h"
11 11
12 #include <math.h> 12 #include <math.h>
13 13
14 #include <algorithm> 14 #include <algorithm>
15 #include <memory> 15 #include <memory>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/api/array_view.h"
18 #include "webrtc/modules/audio_processing/test/test_utils.h" 19 #include "webrtc/modules/audio_processing/test/test_utils.h"
19 #include "webrtc/modules/include/module_common_types.h" 20 #include "webrtc/modules/include/module_common_types.h"
20 #include "webrtc/rtc_base/array_view.h"
21 #include "webrtc/rtc_base/atomicops.h" 21 #include "webrtc/rtc_base/atomicops.h"
22 #include "webrtc/rtc_base/platform_thread.h" 22 #include "webrtc/rtc_base/platform_thread.h"
23 #include "webrtc/rtc_base/random.h" 23 #include "webrtc/rtc_base/random.h"
24 #include "webrtc/rtc_base/safe_conversions.h" 24 #include "webrtc/rtc_base/safe_conversions.h"
25 #include "webrtc/system_wrappers/include/clock.h" 25 #include "webrtc/system_wrappers/include/clock.h"
26 #include "webrtc/system_wrappers/include/event_wrapper.h" 26 #include "webrtc/system_wrappers/include/event_wrapper.h"
27 #include "webrtc/test/gtest.h" 27 #include "webrtc/test/gtest.h"
28 #include "webrtc/test/testsupport/perf_test.h" 28 #include "webrtc/test/testsupport/perf_test.h"
29 29
30 // Check to verify that the define for the intelligibility enhancer is properly 30 // Check to verify that the define for the intelligibility enhancer is properly
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 // Run test and verify that it did not time out. 717 // Run test and verify that it did not time out.
718 EXPECT_EQ(kEventSignaled, Run()); 718 EXPECT_EQ(kEventSignaled, Run());
719 } 719 }
720 720
721 INSTANTIATE_TEST_CASE_P( 721 INSTANTIATE_TEST_CASE_P(
722 AudioProcessingPerformanceTest, 722 AudioProcessingPerformanceTest,
723 CallSimulator, 723 CallSimulator,
724 ::testing::ValuesIn(SimulationConfig::GenerateSimulationConfigs())); 724 ::testing::ValuesIn(SimulationConfig::GenerateSimulationConfigs()));
725 725
726 } // namespace webrtc 726 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698