Index: cc/trees/layer_tree_host_impl_unittest.cc |
diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc |
index 0c4fc352eb970af98e5aa15501e6382ac2f56abd..5695bf292929212d7b64d3da9c9245ce26213cbb 100644 |
--- a/cc/trees/layer_tree_host_impl_unittest.cc |
+++ b/cc/trees/layer_tree_host_impl_unittest.cc |
@@ -83,6 +83,7 @@ class LayerTreeHostImplTest : public testing::Test, |
settings.minimum_occlusion_tracking_size = gfx::Size(); |
settings.impl_side_painting = true; |
settings.solid_color_scrollbars = true; |
+ settings.max_bytes_pending_upload = 16 * 1024 * 1024; |
host_impl_ = LayerTreeHostImpl::Create(settings, |
this, |
@@ -371,6 +372,7 @@ TEST_F(LayerTreeHostImplTest, NotifyIfCanDrawChanged) { |
TEST_F(LayerTreeHostImplTest, CanDrawIncompleteFrames) { |
LayerTreeSettings settings; |
settings.impl_side_painting = true; |
+ settings.max_bytes_pending_upload = 16 * 1024 * 1024; |
host_impl_ = LayerTreeHostImpl::Create( |
settings, this, &proxy_, &stats_instrumentation_); |
@@ -2850,6 +2852,7 @@ class LayerTreeHostImplViewportCoveredTest : public LayerTreeHostImplTest { |
LayerTreeSettings settings; |
settings.minimum_occlusion_tracking_size = gfx::Size(); |
settings.impl_side_painting = true; |
+ settings.max_bytes_pending_upload = 16 * 1024 * 1024; |
host_impl_ = LayerTreeHostImpl::Create( |
settings, this, &proxy_, &stats_instrumentation_); |