Index: cc/test/test_in_process_context_provider.cc |
diff --git a/cc/test/test_in_process_context_provider.cc b/cc/test/test_in_process_context_provider.cc |
index a466d87d9d89657e894dcabaa1ec57f62641107c..b4d580f9e0c0ddd4943739636a66ffdb9888716c 100644 |
--- a/cc/test/test_in_process_context_provider.cc |
+++ b/cc/test/test_in_process_context_provider.cc |
@@ -36,16 +36,18 @@ scoped_ptr<gpu::GLInProcessContext> CreateTestInProcessContext() { |
attribs.bind_generates_resource = false; |
gfx::GpuPreference gpu_preference = gfx::PreferDiscreteGpu; |
- scoped_ptr<gpu::GLInProcessContext> context = make_scoped_ptr( |
- gpu::GLInProcessContext::Create(NULL, |
- NULL, |
- is_offscreen, |
- gfx::kNullAcceleratedWidget, |
- gfx::Size(1, 1), |
- NULL, |
- share_resources, |
- attribs, |
- gpu_preference)); |
+ scoped_ptr<gpu::GLInProcessContext> context = |
+ make_scoped_ptr(gpu::GLInProcessContext::Create( |
+ NULL, |
+ NULL, |
+ is_offscreen, |
+ gfx::kNullAcceleratedWidget, |
+ gfx::Size(1, 1), |
+ NULL, |
+ share_resources, |
+ attribs, |
+ gpu_preference, |
+ gpu::GLInProcessContextSharedMemoryLimits())); |
DCHECK(context); |
return context.Pass(); |