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

Unified Diff: webrtc/voice_engine/test/auto_test/voe_standard_test.h

Issue 3007383002: Replace voe_auto_test (Closed)
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/voice_engine/test/auto_test/voe_standard_test.h
diff --git a/webrtc/voice_engine/test/auto_test/voe_standard_test.h b/webrtc/voice_engine/test/auto_test/voe_standard_test.h
deleted file mode 100644
index 9eaed1c0b56d8785700675f7de55d19a83613dc8..0000000000000000000000000000000000000000
--- a/webrtc/voice_engine/test/auto_test/voe_standard_test.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#ifndef WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
-#define WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H
-
-#include <stdio.h>
-#include <string>
-
-#include "webrtc/test/testsupport/fileutils.h"
-#include "webrtc/voice_engine/test/auto_test/voe_test_common.h"
-
-namespace webrtc {
-namespace voetest {
-
-class SubAPIManager {
- public:
- SubAPIManager()
- : _base(true),
- _codec(false),
- _file(false),
- _hardware(false),
- _network(false),
- _rtp_rtcp(false),
- _apm(false) {
- _codec = true;
- _file = true;
- _hardware = true;
- _network = true;
- _rtp_rtcp = true;
- _apm = true;
- }
-
- void DisplayStatus() const;
-
- private:
- bool _base, _codec;
- bool _file, _hardware;
- bool _network, _rtp_rtcp, _apm;
-};
-
-} // namespace voetest
-} // namespace webrtc
-
-#endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H

Powered by Google App Engine
This is Rietveld 408576698