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

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

Issue 3007383002: Replace voe_auto_test (Closed)
Patch Set: reviewer comment Created 3 years, 3 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
(Empty)
1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef VOICE_ENGINE_VOE_STANDARD_TEST_H_
12 #define VOICE_ENGINE_VOE_STANDARD_TEST_H_
13
14 #include <stdio.h>
15 #include <string>
16
17 #include "test/testsupport/fileutils.h"
18 #include "voice_engine/test/auto_test/voe_test_common.h"
19
20 namespace webrtc {
21 namespace voetest {
22
23 class SubAPIManager {
24 public:
25 SubAPIManager()
26 : _base(true),
27 _codec(false),
28 _file(false),
29 _hardware(false),
30 _network(false),
31 _rtp_rtcp(false),
32 _apm(false) {
33 _codec = true;
34 _file = true;
35 _hardware = true;
36 _network = true;
37 _rtp_rtcp = true;
38 _apm = true;
39 }
40
41 void DisplayStatus() const;
42
43 private:
44 bool _base, _codec;
45 bool _file, _hardware;
46 bool _network, _rtp_rtcp, _apm;
47 };
48
49 } // namespace voetest
50 } // namespace webrtc
51
52 #endif // VOICE_ENGINE_VOE_STANDARD_TEST_H_
OLDNEW
« no previous file with comments | « voice_engine/test/auto_test/standard/rtp_rtcp_test.cc ('k') | voice_engine/test/auto_test/voe_standard_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698