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

Unified Diff: webkit/media/webmediaplayer_proxy.h

Issue 9836102: Fold WebDataSource into BufferedDataSource. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: dcheck-o-rama Created 8 years, 9 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 | « webkit/media/webkit_media.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/webmediaplayer_proxy.h
diff --git a/webkit/media/webmediaplayer_proxy.h b/webkit/media/webmediaplayer_proxy.h
index c7e092964d4934073f5e0d9c8d22ff5e0be1b2d2..7c387add689684a0cb50647d8da1b69b5654f3eb 100644
--- a/webkit/media/webmediaplayer_proxy.h
+++ b/webkit/media/webmediaplayer_proxy.h
@@ -11,8 +11,8 @@
#include "base/synchronization/lock.h"
#include "media/base/pipeline.h"
#include "media/filters/chunk_demuxer_client.h"
+#include "webkit/media/buffered_data_source.h"
#include "webkit/media/skcanvas_video_renderer.h"
-#include "webkit/media/web_data_source.h"
class SkCanvas;
@@ -41,10 +41,10 @@ class WebMediaPlayerProxy
public:
WebMediaPlayerProxy(const scoped_refptr<base::MessageLoopProxy>& render_loop,
WebMediaPlayerImpl* webmediaplayer);
- const scoped_refptr<WebDataSource>& data_source() {
+ const scoped_refptr<BufferedDataSource>& data_source() {
return data_source_;
}
- void set_data_source(const scoped_refptr<WebDataSource>& data_source) {
+ void set_data_source(const scoped_refptr<BufferedDataSource>& data_source) {
data_source_ = data_source;
}
@@ -116,7 +116,7 @@ class WebMediaPlayerProxy
scoped_refptr<base::MessageLoopProxy> render_loop_;
WebMediaPlayerImpl* webmediaplayer_;
- scoped_refptr<WebDataSource> data_source_;
+ scoped_refptr<BufferedDataSource> data_source_;
scoped_refptr<media::VideoRendererBase> frame_provider_;
SkCanvasVideoRenderer video_renderer_;
« no previous file with comments | « webkit/media/webkit_media.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698