Index: voice_engine/test/auto_test/voe_standard_test.h |
diff --git a/voice_engine/test/auto_test/voe_standard_test.h b/voice_engine/test/auto_test/voe_standard_test.h |
deleted file mode 100644 |
index 8888d53c13fd7aacf74028b2f1494e9e5d6a8109..0000000000000000000000000000000000000000 |
--- a/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 VOICE_ENGINE_VOE_STANDARD_TEST_H_ |
-#define VOICE_ENGINE_VOE_STANDARD_TEST_H_ |
- |
-#include <stdio.h> |
-#include <string> |
- |
-#include "test/testsupport/fileutils.h" |
-#include "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 // VOICE_ENGINE_VOE_STANDARD_TEST_H_ |