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

Side by Side Diff: webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc

Issue 2381013002: Sort #includes that got unsorted when gmock.h and gtest.h moved to webrtc/test/ (Closed)
Patch Set: rebase Created 4 years, 2 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) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 10
11 #include <numeric> 11 #include <numeric>
12 #include <vector> 12 #include <vector>
13 13
14 #include "webrtc/test/gtest.h"
15 #include "webrtc/base/array_view.h" 14 #include "webrtc/base/array_view.h"
16 #include "webrtc/base/random.h" 15 #include "webrtc/base/random.h"
17 #include "webrtc/modules/audio_processing/audio_buffer.h" 16 #include "webrtc/modules/audio_processing/audio_buffer.h"
18 #include "webrtc/modules/audio_processing/include/audio_processing.h" 17 #include "webrtc/modules/audio_processing/include/audio_processing.h"
19 #include "webrtc/modules/audio_processing/level_controller/level_controller.h" 18 #include "webrtc/modules/audio_processing/level_controller/level_controller.h"
20 #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" 19 #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h"
21 #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" 20 #include "webrtc/modules/audio_processing/test/bitexactness_tools.h"
22 #include "webrtc/system_wrappers/include/clock.h" 21 #include "webrtc/system_wrappers/include/clock.h"
22 #include "webrtc/test/gtest.h"
23 #include "webrtc/test/testsupport/perf_test.h" 23 #include "webrtc/test/testsupport/perf_test.h"
24 24
25 namespace webrtc { 25 namespace webrtc {
26 namespace { 26 namespace {
27 27
28 const size_t kNumFramesToProcess = 100; 28 const size_t kNumFramesToProcess = 100;
29 29
30 struct SimulatorBuffers { 30 struct SimulatorBuffers {
31 SimulatorBuffers(int render_input_sample_rate_hz, 31 SimulatorBuffers(int render_input_sample_rate_hz,
32 int capture_input_sample_rate_hz, 32 int capture_input_sample_rate_hz,
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 RunTogetherWithApm("LevelControlAndDefaultMobileApm", 48000, 48000, 346 RunTogetherWithApm("LevelControlAndDefaultMobileApm", 48000, 48000,
347 capture_input_sample_rate_hz, 347 capture_input_sample_rate_hz,
348 capture_output_sample_rate_hz, num_channels, true, 348 capture_output_sample_rate_hz, num_channels, true,
349 true); 349 true);
350 } 350 }
351 } 351 }
352 } 352 }
353 } 353 }
354 354
355 } // namespace webrtc 355 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698