| Index: cc/layers/layer_impl_test_properties.cc
|
| diff --git a/cc/layers/layer_impl_test_properties.cc b/cc/layers/layer_impl_test_properties.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e63b8bf69daf762e1d56a7177a0025ab30f5f05b
|
| --- /dev/null
|
| +++ b/cc/layers/layer_impl_test_properties.cc
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "cc/layers/layer_impl_test_properties.h"
|
| +
|
| +namespace cc {
|
| +
|
| +LayerImplTestProperties::LayerImplTestProperties()
|
| + : double_sided(true),
|
| + force_render_surface(false),
|
| + is_container_for_fixed_position_layers(false),
|
| + should_flatten_transform(true),
|
| + num_descendants_that_draw_content(0),
|
| + scroll_parent(nullptr),
|
| + clip_parent(nullptr) {}
|
| +
|
| +LayerImplTestProperties::~LayerImplTestProperties() {}
|
| +
|
| +} // namespace cc
|
|
|