| Index: content/renderer/render_thread_impl.cc
|
| diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
|
| index f7d7a3865d11f0df9cd7a8f99e913da916654600..b445c7f970ff16ab9ad9ab53cfd799f90d5d31b1 100644
|
| --- a/content/renderer/render_thread_impl.cc
|
| +++ b/content/renderer/render_thread_impl.cc
|
| @@ -910,7 +910,8 @@ RenderThreadImpl::GetGpuFactories() {
|
| gpu_channel_host.get(),
|
| blink::WebGraphicsContext3D::Attributes(),
|
| GURL("chrome://gpu/RenderThreadImpl::GetGpuVDAContext3D"),
|
| - WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits())),
|
| + WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
|
| + NULL)),
|
| "GPU-VideoAccelerator-Offscreen");
|
| if (gpu_va_context_provider_) {
|
| media_loop_proxy->PostTask(
|
| @@ -944,7 +945,8 @@ RenderThreadImpl::CreateOffscreenContext3d() {
|
| gpu_channel_host.get(),
|
| attributes,
|
| GURL("chrome://gpu/RenderThreadImpl::CreateOffscreenContext3d"),
|
| - WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits()));
|
| + WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
|
| + NULL));
|
| }
|
|
|
| scoped_refptr<cc::ContextProvider>
|
|
|