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

Unified Diff: content/common/media/audio_output_stream_factory.mojom

Issue 2697663003: Add mojo interface+impl creation of audio streams. (Closed)
Patch Set: Created 3 years, 9 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: content/common/media/audio_output_stream_factory.mojom
diff --git a/content/common/media/audio_output_stream_factory.mojom b/content/common/media/audio_output_stream_factory.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..62ee6f8c65227bb8e42192ba144e2c3473c678a9
--- /dev/null
+++ b/content/common/media/audio_output_stream_factory.mojom
@@ -0,0 +1,24 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
o1ka 2017/03/21 16:20:17 2017
Max Morin 2017/03/22 13:18:29 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module content.mojom;
+
+import "media/mojo/interfaces/audio_output_stream.mojom";
+import "media/mojo/interfaces/audio_parameters.mojom";
+import "media/mojo/interfaces/media_types.mojom";
+import "url/mojo/origin.mojom";
+
+interface RendererAudioOutputStreamFactory {
o1ka 2017/03/21 16:20:17 Should the file be named "renderer_audio_output_st
Max Morin 2017/03/22 13:18:29 Done.
+ // Used to request a device. An AudioOutputStreamProviderRequest may be
+ // supplied, in which case it will be bound to an AudioOutputStreamProvider
+ // implementation or closed (in case of an error).
+ RequestDeviceAuthorization(
+ media.mojom.AudioOutputStreamProvider&? stream_provider_request,
o1ka 2017/03/21 16:20:17 Could you clarify in the comment the usecase when
Max Morin 2017/03/22 13:18:29 Changed so that request must always be provided.
+ int64 session_id,
+ string device_id,
+ url.mojom.Origin origin) =>
+ (media.mojom.OutputDeviceStatus state,
+ media.mojom.AudioParameters output_params,
+ string matched_device_id);
+};

Powered by Google App Engine
This is Rietveld 408576698