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

Unified Diff: chrome/renderer/webmediaplayer_delegate_impl.cc

Issue 88047: Buffered data source that does range request to provide data to media pipelin... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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/renderer.vcproj ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/webmediaplayer_delegate_impl.cc
===================================================================
--- chrome/renderer/webmediaplayer_delegate_impl.cc (revision 14619)
+++ chrome/renderer/webmediaplayer_delegate_impl.cc (working copy)
@@ -6,6 +6,7 @@
#include "chrome/renderer/media/audio_renderer_impl.h"
#include "chrome/renderer/media/data_source_impl.h"
+#include "chrome/renderer/media/buffered_data_source.h"
#include "chrome/renderer/media/video_renderer_impl.h"
#include "chrome/renderer/render_view.h"
#include "googleurl/src/gurl.h"
@@ -71,7 +72,7 @@
filter_factory_->AddFactory(AudioRendererImpl::CreateFactory(
view_->audio_message_filter()));
filter_factory_->AddFactory(VideoRendererImpl::CreateFactory(this));
- filter_factory_->AddFactory(DataSourceImpl::CreateFactory(this));
+ filter_factory_->AddFactory(BufferedDataSource::CreateFactory(this));
}
WebMediaPlayerDelegateImpl::~WebMediaPlayerDelegateImpl() {
« no previous file with comments | « chrome/renderer/renderer.vcproj ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698