| Index: cc/test/layer_tree_host_common_test.cc
|
| diff --git a/cc/test/layer_tree_host_common_test.cc b/cc/test/layer_tree_host_common_test.cc
|
| index 3b6b14b5dec2efcd5ea3ebd6e6259d598de4830c..0a17ab506bf3592d0ac2b3e440695acfdfc8bc4a 100644
|
| --- a/cc/test/layer_tree_host_common_test.cc
|
| +++ b/cc/test/layer_tree_host_common_test.cc
|
| @@ -31,7 +31,8 @@ void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting(
|
| position,
|
| bounds,
|
| flatten_transform,
|
| - is_3d_sorted);
|
| + is_3d_sorted,
|
| + false);
|
| }
|
|
|
| void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting(
|
| @@ -41,14 +42,16 @@ void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting(
|
| const gfx::PointF& position,
|
| const gfx::Size& bounds,
|
| bool flatten_transform,
|
| - bool is_3d_sorted) {
|
| + bool is_3d_sorted,
|
| + bool create_render_surface) {
|
| SetLayerPropertiesForTestingInternal<LayerImpl>(layer,
|
| transform,
|
| transform_origin,
|
| position,
|
| bounds,
|
| flatten_transform,
|
| - is_3d_sorted);
|
| + is_3d_sorted,
|
| + create_render_surface);
|
| layer->SetContentBounds(bounds);
|
| }
|
|
|
|
|