| Index: cc/layers/layer_impl.cc
|
| diff --git a/cc/layers/layer_impl.cc b/cc/layers/layer_impl.cc
|
| index 1686c8fe7daaf6f441e9a7ccfd8d05c3a43e2597..70f932b64ceeb6999d3f9e01cff92f08d24171ae 100644
|
| --- a/cc/layers/layer_impl.cc
|
| +++ b/cc/layers/layer_impl.cc
|
| @@ -59,6 +59,7 @@ LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id)
|
| user_scrollable_vertical_(true),
|
| should_flatten_transform_from_property_tree_(false),
|
| layer_property_changed_(false),
|
| + may_contain_video_(false),
|
| masks_to_bounds_(false),
|
| contents_opaque_(false),
|
| use_parent_backface_visibility_(false),
|
| @@ -327,6 +328,7 @@ void LayerImpl::PushPropertiesTo(LayerImpl* layer) {
|
| should_flatten_transform_from_property_tree_;
|
| layer->masks_to_bounds_ = masks_to_bounds_;
|
| layer->contents_opaque_ = contents_opaque_;
|
| + layer->may_contain_video_ = may_contain_video_;
|
| layer->use_parent_backface_visibility_ = use_parent_backface_visibility_;
|
| layer->use_local_transform_for_backface_visibility_ =
|
| use_local_transform_for_backface_visibility_;
|
|
|