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

Side by Side Diff: webrtc/voice_engine/test/auto_test/fixtures/before_initialization_fixture.h

Issue 1723153002: Remove the VoEDtmf interface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 9 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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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 #ifndef SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ 11 #ifndef SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_
12 #define SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ 12 #define SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_
13 13
14 #include <assert.h> 14 #include <assert.h>
15 15
16 #include "webrtc/common.h" 16 #include "webrtc/common.h"
17 #include "webrtc/common_types.h" 17 #include "webrtc/common_types.h"
18 #include "webrtc/engine_configurations.h" 18 #include "webrtc/engine_configurations.h"
19 #include "webrtc/voice_engine/include/voe_audio_processing.h" 19 #include "webrtc/voice_engine/include/voe_audio_processing.h"
20 #include "webrtc/voice_engine/include/voe_base.h" 20 #include "webrtc/voice_engine/include/voe_base.h"
21 #include "webrtc/voice_engine/include/voe_codec.h" 21 #include "webrtc/voice_engine/include/voe_codec.h"
22 #include "webrtc/voice_engine/include/voe_dtmf.h"
23 #include "webrtc/voice_engine/include/voe_errors.h" 22 #include "webrtc/voice_engine/include/voe_errors.h"
24 #include "webrtc/voice_engine/include/voe_external_media.h" 23 #include "webrtc/voice_engine/include/voe_external_media.h"
25 #include "webrtc/voice_engine/include/voe_file.h" 24 #include "webrtc/voice_engine/include/voe_file.h"
26 #include "webrtc/voice_engine/include/voe_hardware.h" 25 #include "webrtc/voice_engine/include/voe_hardware.h"
27 #include "webrtc/voice_engine/include/voe_neteq_stats.h" 26 #include "webrtc/voice_engine/include/voe_neteq_stats.h"
28 #include "webrtc/voice_engine/include/voe_network.h" 27 #include "webrtc/voice_engine/include/voe_network.h"
29 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" 28 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h"
30 #include "webrtc/voice_engine/include/voe_video_sync.h" 29 #include "webrtc/voice_engine/include/voe_video_sync.h"
31 #include "webrtc/voice_engine/include/voe_volume_control.h" 30 #include "webrtc/voice_engine/include/voe_volume_control.h"
32 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h" 31 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h"
(...skipping 18 matching lines...) Expand all
51 virtual ~BeforeInitializationFixture(); 50 virtual ~BeforeInitializationFixture();
52 51
53 protected: 52 protected:
54 // Use this sleep function to sleep in tests. 53 // Use this sleep function to sleep in tests.
55 void Sleep(long milliseconds); 54 void Sleep(long milliseconds);
56 55
57 webrtc::VoiceEngine* voice_engine_; 56 webrtc::VoiceEngine* voice_engine_;
58 webrtc::VoEBase* voe_base_; 57 webrtc::VoEBase* voe_base_;
59 webrtc::VoECodec* voe_codec_; 58 webrtc::VoECodec* voe_codec_;
60 webrtc::VoEVolumeControl* voe_volume_control_; 59 webrtc::VoEVolumeControl* voe_volume_control_;
61 webrtc::VoEDtmf* voe_dtmf_;
62 webrtc::VoERTP_RTCP* voe_rtp_rtcp_; 60 webrtc::VoERTP_RTCP* voe_rtp_rtcp_;
63 webrtc::VoEAudioProcessing* voe_apm_; 61 webrtc::VoEAudioProcessing* voe_apm_;
64 webrtc::VoENetwork* voe_network_; 62 webrtc::VoENetwork* voe_network_;
65 webrtc::VoEFile* voe_file_; 63 webrtc::VoEFile* voe_file_;
66 webrtc::VoEVideoSync* voe_vsync_; 64 webrtc::VoEVideoSync* voe_vsync_;
67 webrtc::VoEHardware* voe_hardware_; 65 webrtc::VoEHardware* voe_hardware_;
68 webrtc::VoEExternalMedia* voe_xmedia_; 66 webrtc::VoEExternalMedia* voe_xmedia_;
69 webrtc::VoENetEqStats* voe_neteq_stats_; 67 webrtc::VoENetEqStats* voe_neteq_stats_;
70 webrtc::Config config_; 68 webrtc::Config config_;
71 }; 69 };
72 70
73 #endif // SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ 71 #endif // SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698