summaryrefslogtreecommitdiffstats
path: root/content/renderer/media
diff options
context:
space:
mode:
authorfsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-28 04:01:55 +0000
committerfsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-28 04:01:55 +0000
commit1c3c9f64a585678cd1e476157cc2095f4845c3c8 (patch)
treef9e5c552938a6eb74652f56f02d84479c3477ddc /content/renderer/media
parent1df48abcf7193343dbcb2c357e805887ca354367 (diff)
downloadchromium_src-1c3c9f64a585678cd1e476157cc2095f4845c3c8.zip
chromium_src-1c3c9f64a585678cd1e476157cc2095f4845c3c8.tar.gz
chromium_src-1c3c9f64a585678cd1e476157cc2095f4845c3c8.tar.bz2
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
Diffstat (limited to 'content/renderer/media')
-rw-r--r--content/renderer/media/renderer_gpu_video_decoder_factories.cc2
1 files changed, 1 insertions, 1 deletions
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;