| Index: media/audio/audio_output_delegate.h
|
| diff --git a/media/audio/audio_output_delegate.h b/media/audio/audio_output_delegate.h
|
| index 0d9c540b045d2afd02d9135341ab549b14b83c18..3c121778c4f1019764c7fa7e21b52f3d475fb1d5 100644
|
| --- a/media/audio/audio_output_delegate.h
|
| +++ b/media/audio/audio_output_delegate.h
|
| @@ -32,9 +32,10 @@ class MEDIA_EXPORT AudioOutputDelegate {
|
|
|
| // Called when construction is finished and the stream is ready for
|
| // playout.
|
| - virtual void OnStreamCreated(int stream_id,
|
| - base::SharedMemory* shared_memory,
|
| - base::CancelableSyncSocket* socket) = 0;
|
| + virtual void OnStreamCreated(
|
| + int stream_id,
|
| + base::SharedMemory* shared_memory,
|
| + std::unique_ptr<base::CancelableSyncSocket> socket) = 0;
|
|
|
| // Called if stream encounters an error and has become unusable.
|
| virtual void OnStreamError(int stream_id) = 0;
|
|
|