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

Unified Diff: content/public/renderer/media_stream_renderer_factory.h

Issue 2529263004: Move passing of WebRTC rendering frames to IO thread (Closed)
Patch Set: ncarter@ comment. Created 4 years 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 | « no previous file | content/renderer/media/media_stream_renderer_factory_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/renderer/media_stream_renderer_factory.h
diff --git a/content/public/renderer/media_stream_renderer_factory.h b/content/public/renderer/media_stream_renderer_factory.h
index 31032a38faa7e4b19bc2c3883ddd43a1cd310ea9..61510f57e084c35b85cd4121aae40fe35062ba32 100644
--- a/content/public/renderer/media_stream_renderer_factory.h
+++ b/content/public/renderer/media_stream_renderer_factory.h
@@ -37,14 +37,14 @@ class MediaStreamRendererFactory {
virtual ~MediaStreamRendererFactory() {}
// Returns a MediaStreamVideoRenderer that uses the given task runners.
- // |compositor_task_runner| is used for passing video frames.
+ // |io_task_runner| is used for passing video frames.
// |media_task_runner|, |worker_task_runner| and |gpu_factories| are used to
- // create an GpuMemoryBufferVideoFramePool instance on supported platforms.
+ // create a GpuMemoryBufferVideoFramePool instance on supported platforms.
virtual scoped_refptr<MediaStreamVideoRenderer> GetVideoRenderer(
const blink::WebMediaStream& web_stream,
const base::Closure& error_cb,
const MediaStreamVideoRenderer::RepaintCB& repaint_cb,
- const scoped_refptr<base::SingleThreadTaskRunner>& compositor_task_runner,
+ const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner,
const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner,
const scoped_refptr<base::TaskRunner>& worker_task_runner,
media::GpuVideoAcceleratorFactories* gpu_factories) = 0;
« no previous file with comments | « no previous file | content/renderer/media/media_stream_renderer_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698