Index: webkit/media/buffered_data_source.cc |
diff --git a/webkit/media/buffered_data_source.cc b/webkit/media/buffered_data_source.cc |
index bd261f0c6adfec25dd30eb44104050891c0d716a..d243d6b038350ef3b3951f0671b68f6ac068e7ef 100644 |
--- a/webkit/media/buffered_data_source.cc |
+++ b/webkit/media/buffered_data_source.cc |
@@ -392,19 +392,6 @@ void BufferedDataSource::HttpInitialStartCallback(int error) { |
loader_->Stop(); |
} |
- if (error == net::ERR_INVALID_RESPONSE && using_range_request_) { |
- // Assuming that the Range header was causing the problem. Retry without |
- // the Range header. |
- using_range_request_ = false; |
- loader_.reset(CreateResourceLoader(kPositionNotSpecified, |
- kPositionNotSpecified)); |
- loader_->Start( |
- base::Bind(&BufferedDataSource::HttpInitialStartCallback, this), |
- base::Bind(&BufferedDataSource::NetworkEventCallback, this), |
- frame_); |
- return; |
- } |
- |
// Reference to prevent destruction while inside the |initialize_cb_| |
// call. This is a temporary fix to prevent crashes caused by holding the |
// lock and running the destructor. |