| Index: content/browser/renderer_host/media/audio_renderer_host.cc
|
| diff --git a/content/browser/renderer_host/media/audio_renderer_host.cc b/content/browser/renderer_host/media/audio_renderer_host.cc
|
| index 0853b803e60574861d8ce7d6f9144398d98a7a4f..484e2618e852a85faf4c40b09da87855ea6db1a0 100644
|
| --- a/content/browser/renderer_host/media/audio_renderer_host.cc
|
| +++ b/content/browser/renderer_host/media/audio_renderer_host.cc
|
| @@ -66,7 +66,7 @@ class AudioRendererHost::AudioEntry
|
| virtual void OnPlaying() OVERRIDE;
|
| virtual void OnAudible(bool is_audible) OVERRIDE;
|
| virtual void OnPaused() OVERRIDE;
|
| - virtual void OnError(int error_code) OVERRIDE;
|
| + virtual void OnError() OVERRIDE;
|
| virtual void OnDeviceChange(int new_buffer_size, int new_sample_rate)
|
| OVERRIDE;
|
|
|
| @@ -174,7 +174,7 @@ void AudioRendererHost::AudioEntry::OnPaused() {
|
| stream_id_, media::AudioOutputIPCDelegate::kPaused)));
|
| }
|
|
|
| -void AudioRendererHost::AudioEntry::OnError(int error_code) {
|
| +void AudioRendererHost::AudioEntry::OnError() {
|
| BrowserThread::PostTask(
|
| BrowserThread::IO,
|
| FROM_HERE,
|
|
|