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

Side by Side Diff: webrtc/modules/audio_processing/include/mock_audio_processing.h

Issue 1533913004: Revert of Added option to specify a maximum file size when recording an AEC dump. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 MOCK_CONST_METHOD0(was_stream_delay_set, 243 MOCK_CONST_METHOD0(was_stream_delay_set,
244 bool()); 244 bool());
245 MOCK_METHOD1(set_stream_key_pressed, 245 MOCK_METHOD1(set_stream_key_pressed,
246 void(bool key_pressed)); 246 void(bool key_pressed));
247 MOCK_CONST_METHOD0(stream_key_pressed, 247 MOCK_CONST_METHOD0(stream_key_pressed,
248 bool()); 248 bool());
249 MOCK_METHOD1(set_delay_offset_ms, 249 MOCK_METHOD1(set_delay_offset_ms,
250 void(int offset)); 250 void(int offset));
251 MOCK_CONST_METHOD0(delay_offset_ms, 251 MOCK_CONST_METHOD0(delay_offset_ms,
252 int()); 252 int());
253 MOCK_METHOD2(StartDebugRecording, 253 MOCK_METHOD1(StartDebugRecording,
254 int(const char filename[kMaxFilenameSize], 254 int(const char filename[kMaxFilenameSize]));
255 int64_t max_log_size_bytes)); 255 MOCK_METHOD1(StartDebugRecording,
256 MOCK_METHOD2(StartDebugRecording, 256 int(FILE* handle));
257 int(FILE* handle, int64_t max_log_size_bytes));
258 MOCK_METHOD0(StopDebugRecording, 257 MOCK_METHOD0(StopDebugRecording,
259 int()); 258 int());
260 MOCK_METHOD0(UpdateHistogramsOnCallEnd, void()); 259 MOCK_METHOD0(UpdateHistogramsOnCallEnd, void());
261 virtual MockEchoCancellation* echo_cancellation() const { 260 virtual MockEchoCancellation* echo_cancellation() const {
262 return echo_cancellation_.get(); 261 return echo_cancellation_.get();
263 } 262 }
264 virtual MockEchoControlMobile* echo_control_mobile() const { 263 virtual MockEchoControlMobile* echo_control_mobile() const {
265 return echo_control_mobile_.get(); 264 return echo_control_mobile_.get();
266 } 265 }
267 virtual MockGainControl* gain_control() const { 266 virtual MockGainControl* gain_control() const {
(...skipping 18 matching lines...) Expand all
286 rtc::scoped_ptr<MockGainControl> gain_control_; 285 rtc::scoped_ptr<MockGainControl> gain_control_;
287 rtc::scoped_ptr<MockHighPassFilter> high_pass_filter_; 286 rtc::scoped_ptr<MockHighPassFilter> high_pass_filter_;
288 rtc::scoped_ptr<MockLevelEstimator> level_estimator_; 287 rtc::scoped_ptr<MockLevelEstimator> level_estimator_;
289 rtc::scoped_ptr<MockNoiseSuppression> noise_suppression_; 288 rtc::scoped_ptr<MockNoiseSuppression> noise_suppression_;
290 rtc::scoped_ptr<MockVoiceDetection> voice_detection_; 289 rtc::scoped_ptr<MockVoiceDetection> voice_detection_;
291 }; 290 };
292 291
293 } // namespace webrtc 292 } // namespace webrtc
294 293
295 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_ 294 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_MOCK_AUDIO_PROCESSING_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698