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

Unified 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 side-by-side diff with in-line comments
Download patch
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_
« 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