Index: content/renderer/render_thread_impl.cc |
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc |
index 56a15b0aa4251f597a948644485fcb271996e77f..fa06fdbb1c92990bd19676b8034eb75aff1014d8 100644 |
--- a/content/renderer/render_thread_impl.cc |
+++ b/content/renderer/render_thread_impl.cc |
@@ -899,7 +899,8 @@ RenderThreadImpl::GetGpuFactories() { |
gpu_channel_host.get(), |
blink::WebGraphicsContext3D::Attributes(), |
GURL("chrome://gpu/RenderThreadImpl::GetGpuVDAContext3D"), |
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits())), |
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(), |
+ NULL)), |
"GPU-VideoAccelerator-Offscreen"); |
} |
} |
@@ -926,7 +927,8 @@ RenderThreadImpl::CreateOffscreenContext3d() { |
gpu_channel_host.get(), |
attributes, |
GURL("chrome://gpu/RenderThreadImpl::CreateOffscreenContext3d"), |
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits())); |
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(), |
+ NULL)); |
} |
scoped_refptr<cc::ContextProvider> |