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

Unified Diff: media/audio/audio_output_ipc.h

Issue 1769933002: Looking up device id by session id for AudioRendererMixerInput (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing guidou@'s comments Created 4 years, 8 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_output_ipc.h
diff --git a/media/audio/audio_output_ipc.h b/media/audio/audio_output_ipc.h
index d42997ee67b82c6b8dd1557674852a2f25d6423d..52148a0552d59fe4c698546bb06c529a0fea4ae3 100644
--- a/media/audio/audio_output_ipc.h
+++ b/media/audio/audio_output_ipc.h
@@ -36,9 +36,9 @@ class MEDIA_EXPORT AudioOutputIPCDelegate {
// Called when an authorization request for an output device has been
// completed
- virtual void OnDeviceAuthorized(
- OutputDeviceStatus device_status,
- const media::AudioParameters& output_params) = 0;
+ virtual void OnDeviceAuthorized(OutputDeviceStatus device_status,
+ const media::AudioParameters& output_params,
+ const std::string& matched_device_id) = 0;
// Called when an audio stream has been created.
// The shared memory |handle| points to a memory section that's used to

Powered by Google App Engine
This is Rietveld 408576698