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

Unified Diff: media/audio/audio_system_impl.h

Issue 2692203003: Switching AudioOutputAuthorizationHandler from using AudioManager interface to AudioSystem one. (Closed)
Patch Set: AudioSystem comments updated according to discussion with tommi@ Created 3 years, 10 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: media/audio/audio_system_impl.h
diff --git a/media/audio/audio_system_impl.h b/media/audio/audio_system_impl.h
index e7efd10c02e69a014a372d9f19956b4b6d1c562b..dd9342c81812f420b22ce1bf1c351c567ad0dc75 100644
--- a/media/audio/audio_system_impl.h
+++ b/media/audio/audio_system_impl.h
@@ -24,7 +24,13 @@ class MEDIA_EXPORT AudioSystemImpl : public AudioSystem {
void GetInputStreamParameters(
const std::string& device_id,
OnAudioParamsCallback on_params_cb) const override;
+
+ void GetOutputStreamParameters(
+ const std::string& device_id,
+ OnAudioParamsCallback on_params_cb) const override;
+
void HasInputDevices(OnBoolCallback on_has_devices_cb) const override;
+
AudioManager* GetAudioManager() const override;
protected:

Powered by Google App Engine
This is Rietveld 408576698