| Index: media/audio/audio_output_controller.cc
|
| diff --git a/media/audio/audio_output_controller.cc b/media/audio/audio_output_controller.cc
|
| index f21da8fb75f429574aa11819d068c06b2a40adc2..193de0f7f82f17b487f1b032499a25094924cff9 100644
|
| --- a/media/audio/audio_output_controller.cc
|
| +++ b/media/audio/audio_output_controller.cc
|
| @@ -392,4 +392,13 @@ void AudioOutputController::OnDeviceChange() {
|
| }
|
| }
|
|
|
| +DivertedAudioOutputStream* AudioOutputController::Divert() {
|
| + DVLOG(1) << "STUB: AudioOutputController@" << this << "->Divert()";
|
| + // TODO: Do something similar to OnDeviceChange() to stop |stream_| and create
|
| + // the "diverted" stream. The original stream's state is restored upon
|
| + // destruction of the diverted stream object.
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| } // namespace media
|
|
|