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

Unified Diff: webrtc/voice_engine/mock/mock_voe_volume_control.h

Issue 1299143003: Remove AgcManager. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Initialize volume Created 5 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
« no previous file with comments | « webrtc/voice_engine/mock/fake_voe_external_media.h ('k') | webrtc/webrtc_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/mock/mock_voe_volume_control.h
diff --git a/webrtc/voice_engine/mock/mock_voe_volume_control.h b/webrtc/voice_engine/mock/mock_voe_volume_control.h
deleted file mode 100644
index 3511b2f34d3b41b69848b07d88fdc255f80d5fcc..0000000000000000000000000000000000000000
--- a/webrtc/voice_engine/mock/mock_voe_volume_control.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (c) 2013 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_INCLUDE_MOCK_MOCK_VOE_VOLUME_CONTROL_H_
-#define WEBRTC_VOICE_ENGINE_INCLUDE_MOCK_MOCK_VOE_VOLUME_CONTROL_H_
-
-#include "testing/gmock/include/gmock/gmock.h"
-#include "webrtc/voice_engine/include/voe_volume_control.h"
-
-namespace webrtc {
-
-class VoiceEngine;
-
-class MockVoEVolumeControl : public VoEVolumeControl {
- public:
- MOCK_METHOD0(Release, int());
- MOCK_METHOD1(SetSpeakerVolume, int(unsigned int volume));
- MOCK_METHOD1(GetSpeakerVolume, int(unsigned int& volume));
- MOCK_METHOD1(SetMicVolume, int(unsigned int volume));
- MOCK_METHOD1(GetMicVolume, int(unsigned int& volume));
- MOCK_METHOD2(SetInputMute, int(int channel, bool enable));
- MOCK_METHOD2(GetInputMute, int(int channel, bool& enabled));
- MOCK_METHOD1(GetSpeechInputLevel, int(unsigned int& level));
- MOCK_METHOD2(GetSpeechOutputLevel, int(int channel, unsigned int& level));
- MOCK_METHOD1(GetSpeechInputLevelFullRange, int(unsigned int& level));
- MOCK_METHOD2(GetSpeechOutputLevelFullRange,
- int(int channel, unsigned int& level));
- MOCK_METHOD2(SetChannelOutputVolumeScaling, int(int channel, float scaling));
- MOCK_METHOD2(GetChannelOutputVolumeScaling, int(int channel, float& scaling));
- MOCK_METHOD3(SetOutputVolumePan, int(int channel, float left, float right));
- MOCK_METHOD3(GetOutputVolumePan, int(int channel, float& left, float& right));
-};
-
-} // namespace webrtc
-
-#endif // WEBRTC_VOICE_ENGINE_INCLUDE_MOCK_MOCK_VOE_VOLUME_CONTROL_H_
« no previous file with comments | « webrtc/voice_engine/mock/fake_voe_external_media.h ('k') | webrtc/webrtc_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698