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

Unified Diff: modules/audio_device/android/audio_device_template.h

Issue 3020493002: Remove AudioDeviceObserver and make ADM not inherit from the Module interface.
Patch Set: linux build error 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: modules/audio_device/android/audio_device_template.h
diff --git a/modules/audio_device/android/audio_device_template.h b/modules/audio_device/android/audio_device_template.h
index 8d69cb4aa7b2510d8d208e5c0d91a8c284788cdb..df9efeeb49c90e21dacf5a3f2d84d4d747da5dec 100644
--- a/modules/audio_device/android/audio_device_template.h
+++ b/modules/audio_device/android/audio_device_template.h
@@ -391,30 +391,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric {
return 0;
}
- bool PlayoutWarning() const override {
- return false;
- }
-
- bool PlayoutError() const override {
- return false;
- }
-
- bool RecordingWarning() const override {
- return false;
- }
-
- bool RecordingError() const override {
- return false;
- }
-
- void ClearPlayoutWarning() override { LOG(INFO) << __FUNCTION__; }
-
- void ClearPlayoutError() override { LOG(INFO) << __FUNCTION__; }
-
- void ClearRecordingWarning() override { LOG(INFO) << __FUNCTION__; }
-
- void ClearRecordingError() override { LOG(INFO) << __FUNCTION__; }
-
void AttachAudioBuffer(AudioDeviceBuffer* audioBuffer) override {
LOG(INFO) << __FUNCTION__;
output_.AttachAudioBuffer(audioBuffer);

Powered by Google App Engine
This is Rietveld 408576698