| Index: cc/layers/layer_impl_test_properties.h
|
| diff --git a/cc/layers/layer_impl_test_properties.h b/cc/layers/layer_impl_test_properties.h
|
| index 1cf885cfd9de23bc3ba880d36797b008ebb207a8..cc4cff41388c50b8579fe00b862468526b70f371 100644
|
| --- a/cc/layers/layer_impl_test_properties.h
|
| +++ b/cc/layers/layer_impl_test_properties.h
|
| @@ -5,18 +5,19 @@
|
| #ifndef CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_
|
| #define CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_
|
|
|
| +#include "cc/layers/layer_position_constraint.h"
|
| #include "ui/gfx/geometry/point3_f.h"
|
|
|
| namespace cc {
|
|
|
| struct LayerImplTestProperties {
|
| - LayerImplTestProperties()
|
| - : transform_origin(gfx::Point3F()),
|
| - double_sided(true),
|
| - force_render_surface(false) {}
|
| + bool double_sided = true;
|
| + bool force_render_surface = false;
|
| + bool is_container_for_fixed_position_layers = false;
|
| + bool should_flatten_transform = true;
|
| + int num_descendants_that_draw_content = 0;
|
| + LayerPositionConstraint position_constraint;
|
| gfx::Point3F transform_origin;
|
| - bool double_sided;
|
| - bool force_render_surface;
|
| };
|
|
|
| } // namespace cc
|
|
|