OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/media/webmediaplayer_impl.h" | 5 #include "content/renderer/media/webmediaplayer_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 data_source_.reset(new BufferedDataSource( | 309 data_source_.reset(new BufferedDataSource( |
310 main_loop_, | 310 main_loop_, |
311 frame_, | 311 frame_, |
312 media_log_.get(), | 312 media_log_.get(), |
313 base::Bind(&WebMediaPlayerImpl::NotifyDownloading, AsWeakPtr()))); | 313 base::Bind(&WebMediaPlayerImpl::NotifyDownloading, AsWeakPtr()))); |
314 data_source_->Initialize( | 314 data_source_->Initialize( |
315 url, static_cast<BufferedResourceLoader::CORSMode>(cors_mode), | 315 url, static_cast<BufferedResourceLoader::CORSMode>(cors_mode), |
316 base::Bind( | 316 base::Bind( |
317 &WebMediaPlayerImpl::DataSourceInitialized, | 317 &WebMediaPlayerImpl::DataSourceInitialized, |
318 AsWeakPtr(), gurl)); | 318 AsWeakPtr(), gurl)); |
| 319 data_source_->set_host(&pipeline_); |
319 | 320 |
320 is_local_source_ = !gurl.SchemeIsHTTPOrHTTPS(); | 321 is_local_source_ = !gurl.SchemeIsHTTPOrHTTPS(); |
321 } | 322 } |
322 | 323 |
323 void WebMediaPlayerImpl::play() { | 324 void WebMediaPlayerImpl::play() { |
324 DCHECK(main_loop_->BelongsToCurrentThread()); | 325 DCHECK(main_loop_->BelongsToCurrentThread()); |
325 | 326 |
326 paused_ = false; | 327 paused_ = false; |
327 pipeline_.SetPlaybackRate(playback_rate_); | 328 pipeline_.SetPlaybackRate(playback_rate_); |
328 if (data_source_) | 329 if (data_source_) |
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 | 1313 |
1313 if (web_cdm_) { | 1314 if (web_cdm_) { |
1314 decryptor_ready_cb.Run(web_cdm_->GetDecryptor()); | 1315 decryptor_ready_cb.Run(web_cdm_->GetDecryptor()); |
1315 return; | 1316 return; |
1316 } | 1317 } |
1317 | 1318 |
1318 decryptor_ready_cb_ = decryptor_ready_cb; | 1319 decryptor_ready_cb_ = decryptor_ready_cb; |
1319 } | 1320 } |
1320 | 1321 |
1321 } // namespace content | 1322 } // namespace content |
OLD | NEW |