| Index: content/browser/android/in_process/synchronous_compositor_factory_impl.cc
|
| diff --git a/content/browser/android/in_process/synchronous_compositor_factory_impl.cc b/content/browser/android/in_process/synchronous_compositor_factory_impl.cc
|
| index db393f9e3f7b5d26daba39c483314bf2d6de6fca..2bde4a45856ae2f3c9c3e3ce5294374a0561145d 100644
|
| --- a/content/browser/android/in_process/synchronous_compositor_factory_impl.cc
|
| +++ b/content/browser/android/in_process/synchronous_compositor_factory_impl.cc
|
| @@ -55,7 +55,9 @@ scoped_ptr<gpu::GLInProcessContext> CreateOffscreenContext(
|
| false /* share_resources */,
|
| in_process_attribs,
|
| gpu_preference,
|
| - gpu::GLInProcessContextSharedMemoryLimits()));
|
| + gpu::GLInProcessContextSharedMemoryLimits(),
|
| + nullptr,
|
| + nullptr));
|
| return context.Pass();
|
| }
|
|
|
| @@ -78,7 +80,9 @@ scoped_ptr<gpu::GLInProcessContext> CreateContext(
|
| false /* share_resources */,
|
| in_process_attribs,
|
| gpu_preference,
|
| - mem_limits));
|
| + mem_limits,
|
| + nullptr,
|
| + nullptr));
|
| return context.Pass();
|
| }
|
|
|
|
|