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

Side by Side Diff: modules/audio_device/dummy/audio_device_dummy.h

Issue 3020493002: Remove AudioDeviceObserver and make ADM not inherit from the Module interface.
Patch Set: linux build error Created 3 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 int32_t SetStereoPlayout(bool enable) override; 104 int32_t SetStereoPlayout(bool enable) override;
105 int32_t StereoPlayout(bool& enabled) const override; 105 int32_t StereoPlayout(bool& enabled) const override;
106 int32_t StereoRecordingIsAvailable(bool& available) override; 106 int32_t StereoRecordingIsAvailable(bool& available) override;
107 int32_t SetStereoRecording(bool enable) override; 107 int32_t SetStereoRecording(bool enable) override;
108 int32_t StereoRecording(bool& enabled) const override; 108 int32_t StereoRecording(bool& enabled) const override;
109 109
110 // Delay information and control 110 // Delay information and control
111 int32_t PlayoutDelay(uint16_t& delayMS) const override; 111 int32_t PlayoutDelay(uint16_t& delayMS) const override;
112 int32_t RecordingDelay(uint16_t& delayMS) const override; 112 int32_t RecordingDelay(uint16_t& delayMS) const override;
113 113
114 bool PlayoutWarning() const override;
115 bool PlayoutError() const override;
116 bool RecordingWarning() const override;
117 bool RecordingError() const override;
118 void ClearPlayoutWarning() override;
119 void ClearPlayoutError() override;
120 void ClearRecordingWarning() override;
121 void ClearRecordingError() override;
122
123 void AttachAudioBuffer(AudioDeviceBuffer* audioBuffer) override; 114 void AttachAudioBuffer(AudioDeviceBuffer* audioBuffer) override;
124 }; 115 };
125 116
126 } // namespace webrtc 117 } // namespace webrtc
127 118
128 #endif // AUDIO_DEVICE_AUDIO_DEVICE_DUMMY_H_ 119 #endif // AUDIO_DEVICE_AUDIO_DEVICE_DUMMY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698