| Index: media/audio/audio_output_ipc.h
|
| diff --git a/media/audio/audio_output_ipc.h b/media/audio/audio_output_ipc.h
|
| index 8543cdc170eb73139ece7ce5b004f3e9405f5e4e..8ecdd06fbfbded3e7202bfd7692a9a28d9192110 100644
|
| --- a/media/audio/audio_output_ipc.h
|
| +++ b/media/audio/audio_output_ipc.h
|
| @@ -57,6 +57,8 @@ class MEDIA_EXPORT AudioOutputIPCDelegate {
|
| // process.
|
| class MEDIA_EXPORT AudioOutputIPC {
|
| public:
|
| + virtual ~AudioOutputIPC();
|
| +
|
| // Registers an AudioOutputIPCDelegate and returns a |stream_id| that must
|
| // be used with all other IPC functions in this interface.
|
| virtual int AddDelegate(AudioOutputIPCDelegate* delegate) = 0;
|
| @@ -96,9 +98,6 @@ class MEDIA_EXPORT AudioOutputIPC {
|
|
|
| // Sets the volume of the audio stream.
|
| virtual void SetVolume(int stream_id, double volume) = 0;
|
| -
|
| - protected:
|
| - virtual ~AudioOutputIPC();
|
| };
|
|
|
| } // namespace media
|
|
|