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

Unified Diff: chrome/renderer/media/buffered_data_source.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 | « chrome/renderer/media/audio_renderer_impl.cc ('k') | media/base/filter_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/buffered_data_source.cc
diff --git a/chrome/renderer/media/buffered_data_source.cc b/chrome/renderer/media/buffered_data_source.cc
index edec5c1ff28a7040071c7a050340571a3d7442c9..fab726ffb785f3aa7f75f2d5f03c5f870eee90d7 100644
--- a/chrome/renderer/media/buffered_data_source.cc
+++ b/chrome/renderer/media/buffered_data_source.cc
@@ -542,7 +542,7 @@ void BufferedDataSource::Initialize(const std::string& url,
// Make sure we support the scheme of the URL.
if (!IsSchemeSupported(url_)) {
- host()->Error(media::PIPELINE_ERROR_NETWORK);
+ host()->SetError(media::PIPELINE_ERROR_NETWORK);
initialize_callback_->Run();
initialize_callback_.reset();
return;
@@ -569,7 +569,7 @@ void BufferedDataSource::Initialize(const std::string& url,
// Use the local reference to start the request.
if (!resource_loader) {
- host()->Error(media::PIPELINE_ERROR_NETWORK);
+ host()->SetError(media::PIPELINE_ERROR_NETWORK);
initialize_callback_->Run();
initialize_callback_.reset();
return;
@@ -577,7 +577,7 @@ void BufferedDataSource::Initialize(const std::string& url,
if (net::ERR_IO_PENDING != resource_loader->Start(
NewCallback(this, &BufferedDataSource::InitialRequestStarted))) {
- host()->Error(media::PIPELINE_ERROR_NETWORK);
+ host()->SetError(media::PIPELINE_ERROR_NETWORK);
initialize_callback_->Run();
initialize_callback_.reset();
}
@@ -680,7 +680,7 @@ bool BufferedDataSource::IsSeekable() {
void BufferedDataSource::HandleError(media::PipelineError error) {
AutoLock auto_lock(lock_);
if (!stopped_) {
- host()->Error(error);
+ host()->SetError(error);
}
}
@@ -709,7 +709,7 @@ void BufferedDataSource::OnInitialRequestStarted(int error) {
host()->SetBufferedBytes(total_bytes_);
}
} else {
- host()->Error(media::PIPELINE_ERROR_NETWORK);
+ host()->SetError(media::PIPELINE_ERROR_NETWORK);
}
}
initialize_callback_->Run();
« no previous file with comments | « chrome/renderer/media/audio_renderer_impl.cc ('k') | media/base/filter_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698