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

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

Issue 2995363002: Replace gflags usages with rtc_base/flags in all targets based on test_main (Closed)
Patch Set: Fix string use after free Created 3 years, 4 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
11 #ifndef WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H 11 #ifndef WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
12 #define WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H 12 #define WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
13 13
14 #include <stdio.h> 14 #include <stdio.h>
15 #include <string> 15 #include <string>
16 16
17 #include "gflags/gflags.h"
18 #include "webrtc/test/testsupport/fileutils.h" 17 #include "webrtc/test/testsupport/fileutils.h"
19 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h" 18 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h"
20 19
21 DECLARE_bool(include_timing_dependent_tests);
22
23 namespace webrtc { 20 namespace webrtc {
24 namespace voetest { 21 namespace voetest {
25 22
26 class SubAPIManager { 23 class SubAPIManager {
27 public: 24 public:
28 SubAPIManager() 25 SubAPIManager()
29 : _base(true), 26 : _base(true),
30 _codec(false), 27 _codec(false),
31 _file(false), 28 _file(false),
32 _hardware(false), 29 _hardware(false),
(...skipping 13 matching lines...) Expand all
46 private: 43 private:
47 bool _base, _codec; 44 bool _base, _codec;
48 bool _file, _hardware; 45 bool _file, _hardware;
49 bool _network, _rtp_rtcp, _apm; 46 bool _network, _rtp_rtcp, _apm;
50 }; 47 };
51 48
52 } // namespace voetest 49 } // namespace voetest
53 } // namespace webrtc 50 } // namespace webrtc
54 51
55 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H 52 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698