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(); |