Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1018)

Unified Diff: media/filters/audio_renderer_base.cc

Issue 155711: Renamed FilterHost::Error() and Pipeline::GetTime() to more appropriate names. (Closed)
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/pipeline_impl_unittest.cc ('k') | media/filters/audio_renderer_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/audio_renderer_base.cc
diff --git a/media/filters/audio_renderer_base.cc b/media/filters/audio_renderer_base.cc
index d0bad99c1143a279d8eec57c8a048082ba6d6642..675fdd682b75cc51034c04ca5719e0abdaadef31 100644
--- a/media/filters/audio_renderer_base.cc
+++ b/media/filters/audio_renderer_base.cc
@@ -67,7 +67,7 @@ void AudioRendererBase::Initialize(AudioDecoder* decoder,
// Defer initialization until all scheduled reads have completed.
if (!OnInitialize(decoder_->media_format())) {
- host()->Error(PIPELINE_ERROR_INITIALIZATION_FAILED);
+ host()->SetError(PIPELINE_ERROR_INITIALIZATION_FAILED);
initialize_callback_->Run();
initialize_callback_.reset();
}
@@ -96,7 +96,7 @@ void AudioRendererBase::OnReadComplete(Buffer* buffer_in) {
if (queue_.empty()) {
// If we say we have initialized but buffer queue is empty, raise an
// error.
- host()->Error(PIPELINE_ERROR_NO_DATA);
+ host()->SetError(PIPELINE_ERROR_NO_DATA);
} else {
initialized_ = true;
}
« no previous file with comments | « media/base/pipeline_impl_unittest.cc ('k') | media/filters/audio_renderer_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698