| Index: content/renderer/media/audio_input_message_filter.h
|
| diff --git a/content/renderer/media/audio_input_message_filter.h b/content/renderer/media/audio_input_message_filter.h
|
| index f3b1e43a4f1d7992987692b1194b890e77fe9dbc..1536be947aff7c58704db08bb25021e0f08c6efb 100644
|
| --- a/content/renderer/media/audio_input_message_filter.h
|
| +++ b/content/renderer/media/audio_input_message_filter.h
|
| @@ -41,7 +41,7 @@ class CONTENT_EXPORT AudioInputMessageFilter
|
|
|
| // Called when the device referenced by the index has been started in
|
| // the browswer process.
|
| - virtual void OnDeviceReady(int index) = 0;
|
| + virtual void OnDeviceReady(const std::string& device_id) = 0;
|
|
|
| protected:
|
| virtual ~Delegate() {}
|
| @@ -84,7 +84,7 @@ class CONTENT_EXPORT AudioInputMessageFilter
|
| void OnStreamStateChanged(int stream_id, AudioStreamState state);
|
|
|
| // Notification of the opened device of an audio session.
|
| - void OnDeviceStarted(int stream_id, int index);
|
| + void OnDeviceStarted(int stream_id, const std::string& device_id);
|
|
|
| // A map of stream ids to delegates.
|
| IDMap<Delegate> delegates_;
|
|
|