| Index: content/browser/renderer_host/compositor_impl_android.cc
|
| diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc
|
| index 475486328b4414026aa62a3ab8ba47566a2d0d6e..0d250839447ae9eea7614fc07d1ba72d803ac76b 100644
|
| --- a/content/browser/renderer_host/compositor_impl_android.cc
|
| +++ b/content/browser/renderer_host/compositor_impl_android.cc
|
| @@ -517,15 +517,12 @@
|
| limits.max_transfer_buffer_size = std::min(
|
| 3 * full_screen_texture_size_in_bytes, kDefaultMaxTransferBufferSize);
|
| limits.mapped_memory_reclaim_limit = 2 * 1024 * 1024;
|
| - bool bind_generates_resource = false;
|
| - bool lose_context_when_out_of_memory = true;
|
| return make_scoped_ptr(
|
| new WebGraphicsContext3DCommandBufferImpl(surface_id,
|
| url,
|
| gpu_channel_host.get(),
|
| attributes,
|
| - bind_generates_resource,
|
| - lose_context_when_out_of_memory,
|
| + false,
|
| limits,
|
| NULL));
|
| }
|
|
|