1 /* 2 * Copyright (c) 2011 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 WEBRTC_VOICE_ENGINE_VOE_CPU_TEST_H 12 #define WEBRTC_VOICE_ENGINE_VOE_CPU_TEST_H 13 14 #include "webrtc/voice_engine/test/auto_test/voe_standard_test.h" 15 16 namespace voetest { 17 18 class VoETestManager; 19 20 class VoECpuTest { 21 public: 22 VoECpuTest(VoETestManager& mgr); ~VoECpuTest()23 ~VoECpuTest() {} 24 int DoTest(); 25 private: 26 VoETestManager& _mgr; 27 }; 28 29 } // namespace voetest 30 31 #endif // WEBRTC_VOICE_ENGINE_VOE_CPU_TEST_H 32