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

Side by Side Diff: webrtc/voice_engine/test/auto_test/voe_standard_test.h

Issue 2645033002: Remove VoEExternalMedia interface. (Closed)
Patch Set: bad merge Created 3 years, 10 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 13 matching lines...) Expand all
24 24
25 DECLARE_bool(include_timing_dependent_tests); 25 DECLARE_bool(include_timing_dependent_tests);
26 26
27 namespace voetest { 27 namespace voetest {
28 28
29 class SubAPIManager { 29 class SubAPIManager {
30 public: 30 public:
31 SubAPIManager() 31 SubAPIManager()
32 : _base(true), 32 : _base(true),
33 _codec(false), 33 _codec(false),
34 _externalMedia(false),
35 _file(false), 34 _file(false),
36 _hardware(false), 35 _hardware(false),
37 _netEqStats(false), 36 _netEqStats(false),
38 _network(false), 37 _network(false),
39 _rtp_rtcp(false), 38 _rtp_rtcp(false),
40 _videoSync(false), 39 _videoSync(false),
41 _volumeControl(false), 40 _volumeControl(false),
42 _apm(false) { 41 _apm(false) {
43 _codec = true; 42 _codec = true;
44 _externalMedia = true;
45 _file = true; 43 _file = true;
46 _hardware = true; 44 _hardware = true;
47 _netEqStats = true; 45 _netEqStats = true;
48 _network = true; 46 _network = true;
49 _rtp_rtcp = true; 47 _rtp_rtcp = true;
50 _videoSync = true; 48 _videoSync = true;
51 _volumeControl = true; 49 _volumeControl = true;
52 _apm = true; 50 _apm = true;
53 } 51 }
54 52
55 void DisplayStatus() const; 53 void DisplayStatus() const;
56 54
57 private: 55 private:
58 bool _base, _codec; 56 bool _base, _codec;
59 bool _externalMedia, _file, _hardware; 57 bool _file, _hardware;
60 bool _netEqStats, _network, _rtp_rtcp, _videoSync, _volumeControl, _apm; 58 bool _netEqStats, _network, _rtp_rtcp, _videoSync, _volumeControl, _apm;
61 }; 59 };
62 60
63 } // namespace voetest 61 } // namespace voetest
64 62
65 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H 63 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698