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

Unified Diff: media/audio/audio_system.h

Issue 2675713002: Switch Speech Recognition to asynchronous callback-based AudioManager interactions. (Closed)
Patch Set: review comments addressed 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.h
diff --git a/media/audio/audio_system.h b/media/audio/audio_system.h
new file mode 100644
index 0000000000000000000000000000000000000000..9db19314e3f929626330d6472ec609e8b245ca50
--- /dev/null
+++ b/media/audio/audio_system.h
@@ -0,0 +1,37 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MEDIA_AUDIO_AUDIO_SYSTEM_H_
+#define MEDIA_AUDIO_AUDIO_SYSTEM_H_
+
+#include "base/callback.h"
+#include "media/audio/audio_device_description.h"
+#include "media/base/audio_parameters.h"
+#include "media/base/media_export.h"
+
+namespace media {
+class AudioManager;
+
+// Work in progress: Provides asynchronous interface to AudioManager. All the
+// AudioManager clients will be switched to it, in preparation for moving
+// to Mojo audio service.
+class MEDIA_EXPORT AudioSystem {
+ public:
+ // Replies are asynchronously sent to the thread the call is issued on.
+ using OnAudioParamsCallback = base::Callback<void(const AudioParameters&)>;
+
+ virtual ~AudioSystem(){};
+
+ // Callback will receive invalid parameters if the device is not found.
+ virtual void GetInputStreamParameters(
+ const std::string& device_id,
+ OnAudioParamsCallback on_params_cb) const = 0;
+
+ // Must not be used for anything but stream creation.
+ virtual AudioManager* GetAudioManager() const = 0;
+};
+
+} // namespace media
+
+#endif // MEDIA_AUDIO_AUDIO_SYSTEM_H_

Powered by Google App Engine
This is Rietveld 408576698