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

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

Issue 2672583002: Remove VoEVideoSync interface. (Closed)
Patch Set: rebase 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 18 matching lines...) Expand all
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 _file(false), 34 _file(false),
35 _hardware(false), 35 _hardware(false),
36 _netEqStats(false), 36 _netEqStats(false),
37 _network(false), 37 _network(false),
38 _rtp_rtcp(false), 38 _rtp_rtcp(false),
39 _videoSync(false),
40 _volumeControl(false), 39 _volumeControl(false),
41 _apm(false) { 40 _apm(false) {
42 _codec = true; 41 _codec = true;
43 _file = true; 42 _file = true;
44 _hardware = true; 43 _hardware = true;
45 _netEqStats = true; 44 _netEqStats = true;
46 _network = true; 45 _network = true;
47 _rtp_rtcp = true; 46 _rtp_rtcp = true;
48 _videoSync = true;
49 _volumeControl = true; 47 _volumeControl = true;
50 _apm = true; 48 _apm = true;
51 } 49 }
52 50
53 void DisplayStatus() const; 51 void DisplayStatus() const;
54 52
55 private: 53 private:
56 bool _base, _codec; 54 bool _base, _codec;
57 bool _file, _hardware; 55 bool _file, _hardware;
58 bool _netEqStats, _network, _rtp_rtcp, _videoSync, _volumeControl, _apm; 56 bool _netEqStats, _network, _rtp_rtcp, _volumeControl, _apm;
59 }; 57 };
60 58
61 } // namespace voetest 59 } // namespace voetest
62 60
63 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H 61 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698