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

Unified Diff: webkit/glue/media/simple_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 | « media/player/movie.cc ('k') | webkit/glue/webmediaplayer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/media/simple_data_source.cc
diff --git a/webkit/glue/media/simple_data_source.cc b/webkit/glue/media/simple_data_source.cc
index afa27fff51073ca1b3b964f2cadf2e9fe63d3302..f426a147602aaa3f6d3c84677c51ac59bb04d5a7 100644
--- a/webkit/glue/media/simple_data_source.cc
+++ b/webkit/glue/media/simple_data_source.cc
@@ -66,7 +66,7 @@ void SimpleDataSource::Initialize(const std::string& url,
// Validate the URL.
SetURL(GURL(url));
if (!url_.is_valid() || !IsSchemeSupported(url_)) {
- host()->Error(media::PIPELINE_ERROR_NETWORK);
+ host()->SetError(media::PIPELINE_ERROR_NETWORK);
initialize_callback_->Run();
initialize_callback_.reset();
return;
@@ -155,7 +155,7 @@ void SimpleDataSource::OnCompletedRequest(const URLRequestStatus& status,
host()->SetTotalBytes(size_);
host()->SetBufferedBytes(size_);
} else {
- host()->Error(media::PIPELINE_ERROR_NETWORK);
+ host()->SetError(media::PIPELINE_ERROR_NETWORK);
}
initialize_callback_->Run();
initialize_callback_.reset();
« no previous file with comments | « media/player/movie.cc ('k') | webkit/glue/webmediaplayer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698