From 1c3c9f64a585678cd1e476157cc2095f4845c3c8 Mon Sep 17 00:00:00 2001 From: "fsamuel@chromium.org" Date: Wed, 28 Mar 2012 04:01:55 +0000 Subject: Refactor CommandBufferProxy -> CommandBufferProxy (interface) + CommandBufferProxyImpl. No change in functionality. PpapiCommandBufferProxy will then be updated to use the CommandBufferProxy interface. Ultimately, the goal is to enable the browser plugin to reuse WebGraphicsContext3DCommandBufferImpl, instead of requiring a new WebGraphicsContext3DGuest. BUG=119855 TEST=manually Review URL: http://codereview.chromium.org/9835069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129358 0039d316-1c4b-4281-b951-d872f2087c98 --- content/renderer/media/renderer_gpu_video_decoder_factories.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/renderer/media') diff --git a/content/renderer/media/renderer_gpu_video_decoder_factories.cc b/content/renderer/media/renderer_gpu_video_decoder_factories.cc index 7e2b101..5f940b53 100644 --- a/content/renderer/media/renderer_gpu_video_decoder_factories.cc +++ b/content/renderer/media/renderer_gpu_video_decoder_factories.cc @@ -64,7 +64,7 @@ void RendererGpuVideoDecoderFactories::AsyncCreateVideoDecodeAccelerator( DCHECK_EQ(MessageLoop::current(), message_loop_); if (context_) { *vda = gpu_channel_host_->CreateVideoDecoder( - context_->GetCommandBufferProxy()->route_id(), + context_->GetCommandBufferProxy()->GetRouteID(), profile, client); } else { *vda = NULL; -- cgit v1.1