| Index: media/audio/audio_output_device.h
|
| diff --git a/media/audio/audio_output_device.h b/media/audio/audio_output_device.h
|
| index fe4459cc5018d411041b39c49a3e4f35a90187e6..f30bebf435b3b51d2198b2ec891394fc170914af 100644
|
| --- a/media/audio/audio_output_device.h
|
| +++ b/media/audio/audio_output_device.h
|
| @@ -99,9 +99,7 @@ class MEDIA_EXPORT AudioOutputDevice
|
|
|
| // Creates an uninitialized AudioOutputDevice. Clients must call Initialize()
|
| // before using.
|
| - // TODO(tommi): When all dependencies on |content| have been removed
|
| - // from AudioOutputDevice, move this class over to media/audio.
|
| - AudioOutputDevice(AudioOutputIPC* ipc,
|
| + AudioOutputDevice(scoped_ptr<AudioOutputIPC> ipc,
|
| const scoped_refptr<base::MessageLoopProxy>& io_loop);
|
|
|
| protected:
|
| @@ -136,7 +134,7 @@ class MEDIA_EXPORT AudioOutputDevice
|
|
|
| // A pointer to the IPC layer that takes care of sending requests over to
|
| // the AudioRendererHost.
|
| - AudioOutputIPC* ipc_;
|
| + scoped_ptr<AudioOutputIPC> ipc_;
|
|
|
| // Our stream ID on the message filter. Only accessed on the IO thread.
|
| // Must only be modified on the IO thread.
|
|
|