| Index: cc/layers/layer.h
|
| diff --git a/cc/layers/layer.h b/cc/layers/layer.h
|
| index c56ff2998d920c18605c3655be549ae6450d3cf4..4c3031947c5112c4a6321c3248af550dde216531 100644
|
| --- a/cc/layers/layer.h
|
| +++ b/cc/layers/layer.h
|
| @@ -484,6 +484,9 @@ class CC_EXPORT Layer : public base::RefCounted<Layer> {
|
| void SetSubtreePropertyChanged();
|
| bool subtree_property_changed() const { return subtree_property_changed_; }
|
|
|
| + void SetLayerPropertyChanged();
|
| + bool layer_property_changed() const { return layer_property_changed_; }
|
| +
|
| void DidBeginTracing();
|
|
|
| int num_copy_requests_in_target_subtree();
|
| @@ -646,6 +649,7 @@ class CC_EXPORT Layer : public base::RefCounted<Layer> {
|
| bool should_check_backface_visibility_ : 1;
|
| bool force_render_surface_for_testing_ : 1;
|
| bool subtree_property_changed_ : 1;
|
| + bool layer_property_changed_ : 1;
|
| bool has_will_change_transform_hint_ : 1;
|
| Region non_fast_scrollable_region_;
|
| Region touch_event_handler_region_;
|
|
|